get("#348") -- rgb functions get("#388") -- rect functions get("#410") -- shrinkRectangle w, h = img.width, img.height g = 4 -- grid size gw, gh = math.floor(w/g), math.floor(h/g) -- widht & height of grid grid = {} for gy = 0, h-g, g do for gx = 0, w-g, g do local min, max = 1, 0 for y = gy, gy+g-1 do for x = gx, gx+g-1 do local b = bright(rgb(img.getInt(x, y))) min, max = math.min(min, b), math.max(max, b) if min < 0.5 and max > 0.5 then grid[(gy/g)*gw+(gx/g)+1] = true goto next end end end ::next:: end end function fill(x, y, r) if x < 0 or y < 0 or x >= gw or y >= gh then return r end local idx = y*gw+x+1 if not grid[idx] then return r end grid[idx] = nil local me = newRectangle(x, y, 1, 1) if r == nil then r = me else r = mergeRectangles(r, me) end r = fill(x-1, y, r) r = fill(x+1, y, r) r = fill(x, y-1, r) r = fill(x, y+1, r) return r end result = {} for y = 0, gh-1 do for x = 0, gw-1 do local r = fill(x, y, nil) if r then --table.insert(result, (x*g).."/"..(y*g).."-"..c) r = scaleRectangle(r, g) r = shrinkRectangle(r, img) table.insert(result, recttostring(r)) end end end return "Floodfill: "..table.concat(result, "|")
Began life as a copy of #408
Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
ID | Author/Program | Comment | Date |
---|---|---|---|
171 | #1000604 (pitcher) | 2015-08-18 00:49:40 | |
159 | #1000610 (pitcher) | Edit suggestion: !636 !629 main { static Object androidContext; static String programID; public static void main(String[] args) throws Exception { get("#348") -- rgb functions get("#388") -- rect functions get("#410") -- shrinkRectangle w, h = img.width, img.height g = 4 -- grid size gw, gh = math.floor(w/g), math.floor(h/g) -- widht & height of grid grid = {} for gy = 0, h-g, g do for gx = 0, w-g, g do local min, max = 1, 0 for y = gy, gy+g-1 do for x = gx, gx+g-1 do local b = bright(rgb(img.getInt(x, y))) min, max = math.min(min, b), math.max(max, b) if min < 0.5 and max > 0.5 then grid[(gy/g)*gw+(gx/g)+1] = true goto next end end end ::next:: end end function fill(x, y, r) if x < 0 or y < 0 or x >= gw or y >= gh then return r end local idx = y*gw+x+1 if not grid[idx] then return r end grid[idx] = nil local me = newRectangle(x, y, 1, 1) if r == nil then r = me else r = mergeRectangles(r, me) end r = fill(x-1, y, r) r = fill(x+1, y, r) r = fill(x, y-1, r) r = fill(x, y+1, r) return r end result = {} for y = 0, gh-1 do for x = 0, gw-1 do local r = fill(x, y, nil) if r then --table.insert(result, (x*g).."/"..(y*g).."-"..c) r = scaleRectangle(r, g) r = shrinkRectangle(r, img) table.insert(result, recttostring(r)) end end end return "Floodfill: "..table.concat(result, "|") }} | 2015-08-18 00:48:43 |
Image | Result | Result calculated |
---|---|---|
#1004153 | Floodfill: 10, 8, 51, 17 | 2016-08-08 16:40:02 Lua instructions: 95k [raw result] [visualize] |
#1000132 | Floodfill: 571, 7, 572, 8|856, 8, 860, 11|15, 15, 33, 30|8, 12, 864, 500|0, 16, 8, 32|96, 17, 179, 2... | 2016-08-08 05:34:34 Lua instructions: 25118k (2740 ms) [raw result] [visualize] |
#1004135 | Floodfill: 502, 0, 504, 1|38, 11, 43, 22|49, 10, 99, 22|106, 10, 170, 22|0, 13, 2, 14|11, 13, 27, 23... | 2016-08-08 00:11:55 Lua instructions: 11502k [raw result] [visualize] |
#1004090 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-07 13:28:27 [raw result] [visualize] |
#1000224 | Floodfill: 1, 1, 12, 12 | 2016-08-06 21:07:03 Lua instructions: 8k (32 ms) [raw result] [visualize] |
#1000225 | Floodfill: 64, 0, 80, 16|80, 4, 84, 8|84, 9, 87, 12|88, 14, 96, 24|61, 16, 64, 20|48, 21, 60, 36|96,... | 2016-08-06 19:48:02 Lua instructions: 867k (92 ms) [raw result] [visualize] |
#1004088 | Floodfill: 0, 0, 248, 95|248, 3, 249, 4|260, 0, 512, 99|248, 8, 249, 9|290, 10, 323, 20|330, 9, 379,... | 2016-08-06 13:23:25 Lua instructions: 2779k [raw result] [visualize] |
#1004070 | Floodfill: 0, 0, 400, 400|216, 5, 245, 16|366, 8, 372, 14|385, 8, 391, 14|347, 12, 353, 14|15, 39, 1... | 2016-08-05 15:04:54 Lua instructions: 8907k [raw result] [visualize] |
#1004061 | Floodfill: 7, 5, 35, 15|40, 7, 63, 15|69, 5, 71, 15|77, 4, 256, 18|262, 4, 319, 18|324, 4, 352, 15|3... | 2016-08-05 13:30:29 Lua instructions: 8290k [raw result] [visualize] |
#1004060 | java.lang.OutOfMemoryError: Java heap space | 2016-08-05 13:07:19 [raw result] [visualize] |
#1000121 | Floodfill: 166, 2, 167, 3|228, 0, 244, 5|250, 0, 268, 2|215, 7, 220, 18|166, 10, 167, 11|162, 16, 17... | 2016-08-05 04:38:48 Lua instructions: 5880k (733 ms) [raw result] [visualize] |
#1000072 | Floodfill: 52, 26, 63, 32|48, 28, 60, 48|44, 32, 72, 56|40, 52, 48, 72|68, 56, 78, 75|67, 60, 68, 63... | 2016-08-04 10:13:35 Lua instructions: 734k (208 ms) [raw result] [visualize] |
#1000282 | Floodfill: 0, 0, 20, 28|24, 0, 188, 184|76, 4, 88, 8|20, 28, 24, 32|84, 40, 92, 44|44, 44, 48, 48|48... | 2016-08-04 09:46:05 Lua instructions: 3310k (483 ms) [raw result] [visualize] |
#1000063 | Floodfill: 33, 21, 51, 28|30, 21, 76, 65|57, 52, 60, 56|57, 52, 76, 65 | 2016-08-04 09:37:39 Lua instructions: 475k (58 ms) [raw result] [visualize] |
#1000199 | Floodfill: | 2016-08-04 05:04:20 Lua instructions: 213350k (21572 ms) [raw result] [visualize] |
#419 | Floodfill: 0, 0, 80, 8 | 2016-08-03 20:14:42 Lua instructions: 25k (14 ms) [raw result] [visualize] |
#1004009 | Floodfill: 80, 12, 97, 33|33, 19, 46, 33|130, 16, 182, 28|187, 16, 234, 28|692, 25, 694, 28|684, 28,... | 2016-08-03 17:17:33 Lua instructions: 11701k [raw result] [visualize] |
#1000146 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-03 10:34:10 [raw result] [visualize] |
#1000015 | Floodfill: 6, 4, 46, 16|55, 4, 82, 14|90, 4, 164, 16|174, 4, 179, 15 | 2016-08-03 07:11:56 Lua instructions: 143k (21 ms) [raw result] [visualize] |
#1000613 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 20:15:03 [raw result] [visualize] |
#1000611 | Floodfill: 12, 4, 24, 20|84, 4, 88, 8|108, 4, 120, 20|136, 4, 140, 12|152, 4, 172, 20|180, 4, 192, 2... | 2016-08-01 20:10:28 Lua instructions: 8596k (909 ms) [raw result] [visualize] |
#1000600 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 20:05:25 [raw result] [visualize] |
#1000576 | Floodfill: 84, 4, 96, 20|132, 4, 136, 8|152, 4, 168, 20|180, 4, 192, 20|256, 4, 268, 20|276, 4, 292,... | 2016-08-01 19:59:14 Lua instructions: 8616k (894 ms) [raw result] [visualize] |
#1000558 | Floodfill: 36, 12, 84, 52|180, 16, 200, 48|268, 16, 332, 68|176, 32, 180, 40|180, 40, 187, 44|128, 4... | 2016-08-01 19:55:18 Lua instructions: 14855k (1539 ms) [raw result] [visualize] |
#1000556 | Floodfill: 259, 14, 268, 23|228, 14, 427, 56|0, 22, 12, 38|30, 23, 31, 25|133, 31, 164, 52|164, 31, ... | 2016-08-01 19:45:45 Lua instructions: 18464k (1857 ms) [raw result] [visualize] |
#1000555 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 19:38:08 [raw result] [visualize] |
#1000554 | Floodfill: 17, 0, 88, 8|92, 0, 104, 4|120, 0, 124, 4|88, 4, 92, 8|418, 8, 428, 17|137, 17, 187, 29|1... | 2016-08-01 19:34:32 Lua instructions: 11440k (1234 ms) [raw result] [visualize] |
#1000553 | Floodfill: 154, 0, 199, 1|205, 0, 224, 1|228, 0, 232, 1|236, 0, 252, 1|256, 0, 260, 1|264, 0, 268, 1... | 2016-08-01 19:28:40 Lua instructions: 11264k (1177 ms) [raw result] [visualize] |
#1000549 | Floodfill: 34, 11, 43, 20|46, 11, 84, 23|89, 11, 129, 20|6, 19, 7, 22|25, 20, 26, 22|45, 28, 48, 44|... | 2016-08-01 19:24:22 Lua instructions: 3026k (324 ms) [raw result] [visualize] |
#1000546 | Floodfill: 4, 0, 28, 20|200, 0, 220, 4|241, 0, 244, 4|180, 4, 199, 8|244, 4, 248, 8|84, 8, 104, 28|1... | 2016-08-01 19:12:21 Lua instructions: 3838k (396 ms) [raw result] [visualize] |
#1000545 | Floodfill: 56, 44, 212, 104|0, 60, 52, 92|28, 64, 52, 76|24, 68, 28, 76|444, 76, 464, 100|20, 88, 40... | 2016-08-01 19:08:56 Lua instructions: 12604k (1284 ms) [raw result] [visualize] |
#1000544 | Floodfill: 170, 0, 207, 12|285, 0, 296, 32|316, 0, 320, 3|329, 0, 336, 4|432, 0, 460, 16|476, 0, 484... | 2016-08-01 18:58:44 Lua instructions: 69799k (7272 ms) [raw result] [visualize] |
#1000543 | Floodfill: 560, 0, 572, 56|440, 4, 456, 20|464, 4, 500, 20|504, 4, 556, 20|212, 32, 240, 56|204, 40,... | 2016-08-01 18:44:24 Lua instructions: 25292k (2769 ms) [raw result] [visualize] |
#1000542 | Floodfill: 228, 0, 340, 284|472, 4, 492, 20|496, 4, 504, 12|500, 4, 516, 20|540, 4, 544, 20|548, 4, ... | 2016-08-01 18:41:52 Lua instructions: 25123k (2716 ms) [raw result] [visualize] |
#1000519 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 18:36:45 [raw result] [visualize] |
#1000428 | Floodfill: 8, 4, 28, 20|60, 4, 72, 20|132, 4, 144, 20|256, 4, 268, 20|276, 4, 292, 20|296, 4, 316, 2... | 2016-08-01 18:30:07 Lua instructions: 8693k (906 ms) [raw result] [visualize] |
#1000425 | Floodfill: 8, 4, 28, 20|60, 4, 72, 20|84, 4, 96, 20|256, 4, 268, 20|276, 4, 280, 20|284, 4, 292, 20|... | 2016-08-01 18:24:32 Lua instructions: 8522k (895 ms) [raw result] [visualize] |
#1000422 | Floodfill: 12, 4, 24, 20|40, 4, 44, 12|108, 4, 120, 20|132, 4, 144, 20|256, 4, 268, 20|276, 4, 288, ... | 2016-08-01 18:22:29 Lua instructions: 8675k (899 ms) [raw result] [visualize] |
#1000421 | Floodfill: 16, 4, 24, 16|40, 4, 48, 16|68, 4, 76, 16|92, 4, 100, 16|120, 4, 128, 16|144, 4, 152, 16|... | 2016-08-01 18:13:29 Lua instructions: 60504k (6181 ms) [raw result] [visualize] |
#1000418 | Floodfill: 8, 4, 28, 20|60, 4, 72, 20|88, 4, 92, 12|132, 4, 144, 20|256, 4, 268, 20|276, 4, 292, 20|... | 2016-08-01 18:06:10 Lua instructions: 8233k (841 ms) [raw result] [visualize] |
#1000338 | Floodfill: 12, 4, 24, 20|36, 4, 48, 20|56, 4, 76, 20|156, 4, 168, 20|184, 4, 188, 12|276, 4, 280, 20... | 2016-08-01 17:53:24 Lua instructions: 9025k (1027 ms) [raw result] [visualize] |
#1000336 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 17:48:38 [raw result] [visualize] |
#1000335 | Floodfill: 250, 170, 280, 172|212, 172, 248, 200|284, 173, 291, 176|292, 176, 299, 180|300, 181, 304... | 2016-08-01 17:44:06 Lua instructions: 15953k (1623 ms) [raw result] [visualize] |
#1000334 | Floodfill: 105, 104, 111, 112 | 2016-08-01 17:43:28 Lua instructions: 2757k (295 ms) [raw result] [visualize] |
#1000331 | Floodfill: 56, 29, 310, 264|261, 49, 262, 50|269, 56, 275, 62|278, 66, 280, 68|250, 105, 252, 108|13... | 2016-08-01 17:43:25 Lua instructions: 5838k (615 ms) [raw result] [visualize] |
#1000332 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 17:43:24 [raw result] [visualize] |
#1000333 | Floodfill: 8, 7, 28, 22|76, 11, 171, 23|0, 22, 2, 31|65, 33, 87, 36|56, 37, 64, 44|88, 36, 100, 52|2... | 2016-08-01 17:43:23 Lua instructions: 2085k (357 ms) [raw result] [visualize] |
#1000330 | Floodfill: 0, 0, 212, 236|8, 8, 28, 23|76, 12, 171, 24|52, 29, 156, 36|44, 32, 52, 48|156, 36, 160, ... | 2016-08-01 17:43:23 Lua instructions: 2862k (312 ms) [raw result] [visualize] |
#1000326 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 16:53:33 [raw result] [visualize] |
#1000325 | Floodfill: 0, 8, 176, 92|169, 12, 180, 32|168, 36, 180, 52|168, 60, 176, 68|192, 60, 268, 76|120, 76... | 2016-08-01 16:46:38 Lua instructions: 2546k (272 ms) [raw result] [visualize] |
#1000321 | Floodfill: 5, 4, 12, 292|508, 4, 515, 8|516, 10, 517, 292|308, 88, 396, 204|296, 96, 300, 100|64, 10... | 2016-08-01 15:37:13 Lua instructions: 9715k (978 ms) [raw result] [visualize] |
#1000320 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 15:26:09 [raw result] [visualize] |
#1000316 | Floodfill: 13, 10, 77, 24|84, 9, 152, 21|159, 9, 188, 21|195, 9, 220, 21|332, 9, 372, 21|378, 9, 423... | 2016-08-01 15:00:27 Lua instructions: 17264k (1918 ms) [raw result] [visualize] |
#1000312 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 14:21:32 [raw result] [visualize] |
#1000310 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 14:21:21 [raw result] [visualize] |
#1000309 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 14:20:52 [raw result] [visualize] |
#1000289 | Floodfill: 4, 4, 24, 40|44, 4, 52, 8|25, 8, 28, 12|28, 8, 43, 32|36, 8, 64, 44|93, 8, 100, 11|100, 8... | 2016-08-01 14:19:37 Lua instructions: 909k (252 ms) [raw result] [visualize] |
#1000284 | Floodfill: 364, 28, 384, 40|392, 32, 400, 36|356, 36, 360, 48|400, 36, 404, 44|404, 44, 412, 53|348,... | 2016-08-01 14:06:11 Lua instructions: 34558k (3665 ms) [raw result] [visualize] |
#1000285 | Floodfill: 338, 0, 344, 28|136, 23, 328, 200|344, 32, 356, 76|236, 58, 252, 72|332, 66, 344, 72|324,... | 2016-08-01 14:06:00 Lua instructions: 7132k (857 ms) [raw result] [visualize] |
#1000283 | Floodfill: 324, 13, 325, 14|314, 19, 315, 20|320, 22, 321, 23|303, 25, 304, 26|311, 25, 312, 26|296,... | 2016-08-01 13:50:44 Lua instructions: 3440k (361 ms) [raw result] [visualize] |
#1000279 | Floodfill: | 2016-08-01 13:45:30 Lua instructions: 8859k (994 ms) [raw result] [visualize] |
#1000276 | Floodfill: 188, 12, 213, 16|229, 12, 252, 15|176, 16, 186, 19|256, 16, 268, 20|164, 20, 173, 24|270,... | 2016-08-01 13:34:50 Lua instructions: 12598k (1425 ms) [raw result] [visualize] |
#1000275 | Floodfill: 0, 0, 264, 136|66, 0, 69, 2|88, 0, 91, 1|185, 0, 230, 12|234, 0, 244, 9|277, 3, 293, 8|30... | 2016-08-01 13:19:43 Lua instructions: 16877k (1866 ms) [raw result] [visualize] |
#1000269 | Floodfill: 59, 0, 112, 52|108, 0, 160, 16|132, 0, 176, 20|176, 0, 188, 9|192, 0, 368, 104|408, 0, 44... | 2016-08-01 13:07:00 Lua instructions: 7077k (731 ms) [raw result] [visualize] |
#1000268 | Floodfill: 24, 32, 28, 52|32, 32, 176, 52|180, 32, 240, 52|240, 32, 256, 52|260, 32, 324, 52|328, 32... | 2016-08-01 13:04:10 Lua instructions: 28663k (2873 ms) [raw result] [visualize] |
#1000267 | Floodfill: 32, 0, 436, 12|24, 16, 436, 34 | 2016-08-01 12:45:39 Lua instructions: 1060k (370 ms) [raw result] [visualize] |
#1000262 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 12:28:25 [raw result] [visualize] |
#1000261 | Floodfill: 216, 108, 280, 112|200, 112, 212, 119|284, 112, 296, 115|300, 116, 308, 119|180, 120, 200... | 2016-08-01 12:05:53 Lua instructions: 17905k (1851 ms) [raw result] [visualize] |
#1000259 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 11:51:36 [raw result] [visualize] |
#1000257 | Floodfill: 348, 24, 381, 28|388, 24, 476, 32|480, 28, 484, 32|324, 192, 344, 264|352, 196, 356, 200|... | 2016-08-01 11:43:28 Lua instructions: 18279k (1974 ms) [raw result] [visualize] |
#1000253 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 11:39:17 [raw result] [visualize] |
#1000250 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 11:28:06 [raw result] [visualize] |
#1000248 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 11:10:53 [raw result] [visualize] |
#1000247 | Floodfill: 4, 9, 12, 24|16, 11, 18, 24|24, 11, 31, 24|33, 11, 44, 24|48, 9, 94, 24|100, 11, 102, 24|... | 2016-08-01 11:05:05 Lua instructions: 3870k (404 ms) [raw result] [visualize] |
#1000246 | Floodfill: 3, 2, 17, 18|6, 26, 24, 37|37, 26, 58, 37|71, 26, 97, 37|109, 27, 142, 37|156, 27, 194, 3... | 2016-08-01 10:37:38 Lua instructions: 61224k (6536 ms) [raw result] [visualize] |
#1000244 | Floodfill: 132, 0, 137, 2|84, 0, 172, 36|204, 0, 217, 4|292, 1, 304, 4|340, 0, 346, 4|436, 0, 440, 1... | 2016-08-01 09:45:48 Lua instructions: 17713k (2028 ms) [raw result] [visualize] |
#1000243 | Floodfill: 0, 0, 4, 8|168, 0, 176, 8|196, 0, 209, 4|224, 0, 324, 12|392, 0, 394, 11|459, 0, 464, 16|... | 2016-08-01 09:35:38 Lua instructions: 18104k (1868 ms) [raw result] [visualize] |
#1000241 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 09:35:20 [raw result] [visualize] |
#1000240 | Floodfill: 36, 36, 44, 40|24, 36, 96, 68|96, 36, 99, 38|96, 36, 164, 68|168, 36, 176, 68|184, 36, 22... | 2016-08-01 09:34:13 Lua instructions: 2422k (273 ms) [raw result] [visualize] |
#1000238 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 09:21:37 [raw result] [visualize] |
#1000236 | Floodfill: 16, 0, 40, 16|52, 0, 80, 16|128, 0, 144, 16|168, 0, 176, 16|200, 0, 240, 16|264, 0, 296, ... | 2016-08-01 09:14:17 Lua instructions: 51957k (5307 ms) [raw result] [visualize] |
#1000235 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 08:57:03 [raw result] [visualize] |
#1000230 | Floodfill: 132, 0, 148, 28|160, 0, 168, 20|181, 0, 184, 32|188, 0, 191, 20|212, 0, 216, 5|225, 0, 23... | 2016-08-01 08:43:19 Lua instructions: 18069k (1999 ms) [raw result] [visualize] |
#1000229 | Floodfill: 479, 13, 480, 14|335, 28, 338, 32|60, 57, 83, 64|76, 57, 124, 96|58, 60, 60, 72|0, 68, 4,... | 2016-08-01 08:36:06 Lua instructions: 17876k (1972 ms) [raw result] [visualize] |
#1000182 | Floodfill: 0, 0, 60, 12 | 2016-08-01 08:34:41 Lua instructions: 26k (160 ms) [raw result] [visualize] |
#499 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:34:29 [raw result] [visualize] |
#500 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:34:29 [raw result] [visualize] |
#1000227 | Floodfill: | 2016-08-01 08:34:09 Lua instructions: 227k (136 ms) [raw result] [visualize] |
#1000226 | Floodfill: 135, 28, 171, 134 | 2016-08-01 08:34:09 Lua instructions: 2361k (357 ms) [raw result] [visualize] |
#1000223 | Floodfill: 1, 1, 12, 12 | 2016-08-01 08:23:11 Lua instructions: 9k (35 ms) [raw result] [visualize] |
#1000186 | Floodfill: 0, 1, 50, 12|56, 1, 108, 12 | 2016-08-01 08:23:00 Lua instructions: 56k (11 ms) [raw result] [visualize] |
#1000180 | Floodfill: 0, 18, 112, 44|108, 18, 172, 36|181, 18, 186, 28|184, 28, 186, 29|0, 33, 18, 43|27, 33, 4... | 2016-08-01 08:18:33 Lua instructions: 2355k (375 ms) [raw result] [visualize] |
#1000179 | Floodfill: 384, 328, 396, 384|416, 328, 428, 352|452, 328, 484, 380|512, 328, 520, 384|544, 328, 556... | 2016-08-01 08:18:26 Lua instructions: 47126k (4823 ms) [raw result] [visualize] |
#1000206 | Floodfill: 264, 600, 276, 604|468, 600, 480, 604|257, 604, 264, 608|480, 604, 488, 608|252, 608, 256... | 2016-08-01 07:31:41 Lua instructions: 151083k (15345 ms) [raw result] [visualize] |
#1000207 | Floodfill: 30, 30, 174, 174 | 2016-08-01 07:31:25 Lua instructions: 2474k (381 ms) [raw result] [visualize] |
#488 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 07:29:04 [raw result] [visualize] |
#1000177 | Floodfill: 203, 0, 204, 140|54, 95, 183, 120|0, 96, 38, 120|2, 102, 28, 112|0, 208, 248, 209 | 2016-08-01 07:28:59 Lua instructions: 3237k (368 ms) [raw result] [visualize] |
#1000183 | Floodfill: 0, 0, 44, 12 | 2016-08-01 07:28:59 Lua instructions: 22k (11 ms) [raw result] [visualize] |
#1000194 | Floodfill: 984, 80, 992, 84|1044, 96, 1052, 100|352, 100, 356, 104|388, 100, 396, 108|932, 108, 936,... | 2016-08-01 07:28:58 Lua instructions: 62404k (6533 ms) [raw result] [visualize] |
#1000181 | Floodfill: 0, 0, 48, 8 | 2016-08-01 07:28:58 Lua instructions: 18k (47 ms) [raw result] [visualize] |
#1000178 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 07:28:52 [raw result] [visualize] |
#1000184 | Floodfill: 0, 0, 48, 12 | 2016-08-01 07:28:52 Lua instructions: 21k (54 ms) [raw result] [visualize] |
#1000200 | Floodfill: | 2016-08-01 07:28:46 Lua instructions: 18743k (1981 ms) [raw result] [visualize] |
#1000198 | Floodfill: 296, 112, 304, 120|304, 118, 308, 124|289, 120, 296, 132|308, 125, 312, 132|284, 134, 288... | 2016-08-01 07:28:19 Lua instructions: 21288k (2157 ms) [raw result] [visualize] |
#1000197 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 07:28:17 [raw result] [visualize] |
#1000196 | Floodfill: | 2016-08-01 07:28:10 Lua instructions: 240259k [raw result] [visualize] |
#1000204 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 07:27:15 [raw result] [visualize] |
#1000203 | Floodfill: 95, 61, 324, 64|86, 65, 92, 68|324, 64, 339, 72|80, 69, 84, 72|76, 72, 80, 76|340, 73, 34... | 2016-08-01 07:27:13 Lua instructions: 10396k (1174 ms) [raw result] [visualize] |
#1000202 | Floodfill: | 2016-08-01 07:27:12 Lua instructions: 21626k (2167 ms) [raw result] [visualize] |
#1000208 | Floodfill: 63, 65, 324, 325 | 2016-08-01 07:27:09 Lua instructions: 8691k (975 ms) [raw result] [visualize] |
#1000201 | Floodfill: 49, 47, 254, 253 | 2016-08-01 07:27:09 Lua instructions: 5357k (657 ms) [raw result] [visualize] |
#1000187 | Floodfill: 0, 3, 20, 23|523, 9, 559, 18|566, 9, 632, 21|638, 9, 688, 18|693, 9, 788, 18|0, 22, 1, 23... | 2016-08-01 07:27:08 Lua instructions: 61394k (6275 ms) [raw result] [visualize] |
#1000185 | Floodfill: 0, 0, 48, 8 | 2016-08-01 07:27:08 Lua instructions: 17k (47 ms) [raw result] [visualize] |
#1000175 | Floodfill: 67, 3, 68, 4|568, 0, 571, 4|31, 4, 59, 6|68, 11, 73, 12|103, 10, 104, 12|126, 10, 131, 12... | 2016-08-01 07:27:02 Lua instructions: 8371k (1032 ms) [raw result] [visualize] |
#1000212 | Floodfill: 1188, 0, 1220, 16|1160, 4, 1192, 24|1216, 12, 1228, 20|1224, 16, 1236, 24|1152, 20, 1164,... | 2016-08-01 07:27:01 Lua instructions: 376845k [raw result] [visualize] |
#1000214 | Floodfill: 288, 0, 316, 16|493, 0, 507, 4|692, 0, 706, 4|472, 5, 492, 20|508, 4, 514, 8|685, 4, 692,... | 2016-08-01 07:26:10 Lua instructions: 54032k (5535 ms) [raw result] [visualize] |
#1000220 | Floodfill: 100, 11, 124, 12|82, 12, 96, 16|128, 12, 142, 16|57, 16, 80, 28|144, 16, 167, 28|29, 28, ... | 2016-08-01 07:26:10 Lua instructions: 2981k (312 ms) [raw result] [visualize] |
#1000213 | Floodfill: 12, 33, 377, 350 | 2016-08-01 07:26:04 Lua instructions: 8673k (1002 ms) [raw result] [visualize] |
#1000209 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 07:26:03 [raw result] [visualize] |
#1000216 | Floodfill: 924, 176, 972, 179|1028, 176, 1076, 179|888, 180, 914, 184|1086, 180, 1112, 184|860, 184,... | 2016-08-01 07:26:00 Lua instructions: 238016k [raw result] [visualize] |
#1000218 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 07:26:00 [raw result] [visualize] |
#1000195 | Floodfill: 168, 0, 176, 8|245, 0, 252, 12|452, 0, 464, 4|476, 0, 488, 4|472, 4, 474, 8|491, 4, 504, ... | 2016-08-01 07:25:31 Lua instructions: 13882k (1551 ms) [raw result] [visualize] |
#1000210 | Floodfill: 396, 129, 1108, 136|392, 133, 396, 140|1108, 137, 1112, 144|385, 140, 392, 152|1112, 144,... | 2016-08-01 07:25:29 Lua instructions: 134111k (14998 ms) [raw result] [visualize] |
#1000189 | Floodfill: 0, 0, 16, 7|16, 3, 17, 4|23, 0, 37, 15|317, 4, 334, 11|442, 11, 448, 12|380, 12, 440, 16|... | 2016-08-01 07:25:15 Lua instructions: 7611k (904 ms) [raw result] [visualize] |
#1000176 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2016-08-01 07:25:14 [raw result] [visualize] |
#1000172 | Floodfill: 92, 45, 116, 79|283, 96, 290, 100|84, 106, 99, 120|214, 107, 250, 124|256, 107, 292, 108|... | 2016-08-01 01:56:05 Lua instructions: 2136k (331 ms) [raw result] [visualize] |
#1000173 | Floodfill: 91, 44, 112, 57|91, 48, 115, 78|283, 96, 290, 100|84, 106, 99, 120|214, 107, 250, 124|256... | 2016-08-01 01:55:41 Lua instructions: 2152k (344 ms) [raw result] [visualize] |
#1000171 | Floodfill: 1, 1, 8, 16|8, 1, 36, 34|32, 1, 60, 34|101, 1, 124, 34|212, 1, 236, 20|240, 1, 282, 34|29... | 2016-08-01 01:48:37 Lua instructions: 1597k (308 ms) [raw result] [visualize] |
#1000170 | Floodfill: 20, 10, 36, 24|8, 10, 56, 51|64, 10, 100, 51|104, 10, 113, 51|170, 10, 428, 31|438, 10, 6... | 2016-08-01 01:47:47 Lua instructions: 33912k (3637 ms) [raw result] [visualize] |
#1000168 | Floodfill: 95, 0, 100, 5 | 2016-08-01 01:16:01 Lua instructions: 239k (136 ms) [raw result] [visualize] |
#1000167 | Floodfill: 0, 24, 304, 41|72, 35, 73, 38|12, 53, 27, 71|142, 55, 158, 69|168, 55, 183, 69|232, 55, 2... | 2016-08-01 01:12:15 Lua instructions: 1459k (154 ms) [raw result] [visualize] |
#1000166 | Floodfill: 0, 24, 304, 41|12, 53, 26, 71|142, 55, 158, 69|168, 55, 183, 69|232, 55, 248, 69|258, 55,... | 2016-08-01 01:12:15 Lua instructions: 1463k (396 ms) [raw result] [visualize] |
#1000164 | Floodfill: 0, 4, 28, 20|32, 4, 56, 20 | 2016-08-01 01:04:56 Lua instructions: 51k (77 ms) [raw result] [visualize] |
#1003828 | Floodfill: 256, 0, 500, 272|359, 0, 360, 7|160, 5, 162, 7|393, 4, 395, 13|167, 10, 169, 12|360, 11, ... | 2016-08-01 00:57:37 Lua instructions: 7639k [raw result] [visualize] |
#1000162 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 23:21:06 [raw result] [visualize] |
#1000161 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 23:18:58 [raw result] [visualize] |
#1000160 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 23:16:01 [raw result] [visualize] |
#1000158 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 23:11:59 [raw result] [visualize] |
#1000156 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:37:21 [raw result] [visualize] |
#1000151 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:20 [raw result] [visualize] |
#1000150 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:20 [raw result] [visualize] |
#1000149 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:20 [raw result] [visualize] |
#1000153 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:19 [raw result] [visualize] |
#1000152 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:19 [raw result] [visualize] |
#1000155 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:19 [raw result] [visualize] |
#1000154 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:34:19 [raw result] [visualize] |
#1000148 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:16:28 [raw result] [visualize] |
#1000147 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 22:12:04 [raw result] [visualize] |
#1000144 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:57:27 [raw result] [visualize] |
#1000145 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:57:26 [raw result] [visualize] |
#1000143 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:33:49 [raw result] [visualize] |
#1000142 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:22:54 [raw result] [visualize] |
#1000139 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:07:54 [raw result] [visualize] |
#1000137 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:07:54 [raw result] [visualize] |
#1000138 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:07:53 [raw result] [visualize] |
#1000140 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 21:07:53 [raw result] [visualize] |
#1000136 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:50:36 [raw result] [visualize] |
#1000131 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:32:58 [raw result] [visualize] |
#1000130 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:25:30 [raw result] [visualize] |
#1000129 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:21:26 [raw result] [visualize] |
#1000128 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:21:26 [raw result] [visualize] |
#1000127 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:19:15 [raw result] [visualize] |
#1000126 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:13:08 [raw result] [visualize] |
#1000125 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:08:08 [raw result] [visualize] |
#1000124 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:04:03 [raw result] [visualize] |
#1000122 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:02:20 [raw result] [visualize] |
#1000120 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:01:21 [raw result] [visualize] |
#1000119 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:00:56 [raw result] [visualize] |
#1000118 | LuaError: #409:5 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 20:00:27 [raw result] [visualize] |
#1000113 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:53:57 [raw result] [visualize] |
#1000114 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:53:55 [raw result] [visualize] |
#1000117 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:53:50 [raw result] [visualize] |
#1000116 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:53:48 [raw result] [visualize] |
#1000022 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:28 [raw result] [visualize] |
#1000018 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:28 [raw result] [visualize] |
#1000020 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:28 [raw result] [visualize] |
#1000035 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:28 [raw result] [visualize] |
#1000041 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:27 [raw result] [visualize] |
#1000027 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000034 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000024 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:26 [raw result] [visualize] |
#100 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000013 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:26 [raw result] [visualize] |
#309 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000003 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000021 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:26 [raw result] [visualize] |
#1000097 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:25 [raw result] [visualize] |
#1000054 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:25 [raw result] [visualize] |
#1000010 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:25 [raw result] [visualize] |
#141 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:25 [raw result] [visualize] |
#1000036 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000055 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000073 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#84 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000079 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000083 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000086 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:24 [raw result] [visualize] |
#1000082 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000062 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000092 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000093 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000106 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000087 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000091 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000088 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000074 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000078 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000105 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000104 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:23 [raw result] [visualize] |
#1000043 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:22 [raw result] [visualize] |
#1000109 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:22 [raw result] [visualize] |
#1000014 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:22 [raw result] [visualize] |
#1000056 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:22 [raw result] [visualize] |
#1000030 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:21 [raw result] [visualize] |
#85 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:21 [raw result] [visualize] |
#1000080 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:21 [raw result] [visualize] |
#1000028 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:20 [raw result] [visualize] |
#1000075 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:20 [raw result] [visualize] |
#1000031 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:20 [raw result] [visualize] |
#145 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:20 [raw result] [visualize] |
#1000029 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:19 [raw result] [visualize] |
#1000042 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:19 [raw result] [visualize] |
#1000064 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:19 [raw result] [visualize] |
#1000046 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:18 [raw result] [visualize] |
#1000101 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:18 [raw result] [visualize] |
#1000045 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:18 [raw result] [visualize] |
#98 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:18 [raw result] [visualize] |
#1000061 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:18 [raw result] [visualize] |
#1000026 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:51:18 [raw result] [visualize] |
#1000025 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000047 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#182 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#113 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#178 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000052 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000096 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000100 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:17 [raw result] [visualize] |
#115 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000077 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000099 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:17 [raw result] [visualize] |
#92 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#93 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#87 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:17 [raw result] [visualize] |
#1000095 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000108 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000051 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000033 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000089 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000044 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000053 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:16 [raw result] [visualize] |
#1000102 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:15 [raw result] [visualize] |
#1000107 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:15 [raw result] [visualize] |
#1000032 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:15 [raw result] [visualize] |
#48 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:15 [raw result] [visualize] |
#1000111 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:15 [raw result] [visualize] |
#1000110 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:15 [raw result] [visualize] |
#1000112 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000040 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000038 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000039 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000081 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000017 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000085 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000084 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:14 [raw result] [visualize] |
#1000103 | LuaError: #409:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:51:13 [raw result] [visualize] |
#1000222 | Floodfill: 104, 99, 116, 108|116, 105, 128, 120|100, 108, 104, 112|97, 113, 100, 116|88, 118, 96, 12... | 2016-07-31 18:52:18 Lua instructions: 2376k (383 ms) [raw result] [visualize] |
#1000219 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 18:51:34 [raw result] [visualize] |
#1003745 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 18:51:22 [raw result] [visualize] |
#489 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 18:51:22 [raw result] [visualize] |
#1000141 | Floodfill: 2, 3, 18, 22|556, 9, 609, 18|617, 9, 622, 18|637, 9, 708, 18|714, 9, 756, 18|628, 13, 631... | 2016-07-31 18:45:27 Lua instructions: 61579k (6445 ms) [raw result] [visualize] |
#1003958 | Floodfill: 0, 0, 68, 24|68, 0, 1364, 25|158, 8, 178, 18|216, 8, 236, 18|274, 8, 294, 18|331, 8, 352,... | 2016-07-31 18:34:24 Lua instructions: 61311k [raw result] [visualize] |
#1000614 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-08-17 20:56:31 [raw result] [visualize] |
#1000547 | Floodfill: 718, 107, 720, 108|727, 106, 728, 107|733, 105, 734, 106|740, 105, 741, 106|688, 111, 689... | 2015-08-11 21:13:13 Lua instructions: 31308k (3157 ms) [raw result] [visualize] |
#1000444 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-08-06 05:56:24 [raw result] [visualize] |
#1000339 | Floodfill: 12, 4, 24, 20|36, 4, 48, 20|56, 4, 76, 20|180, 4, 192, 20|276, 4, 280, 20|284, 4, 292, 20... | 2015-08-03 21:13:50 Lua instructions: 8976k (951 ms) [raw result] [visualize] |
#1000359 | Floodfill: 564, 0, 568, 8|100, 12, 101, 13|111, 12, 119, 13|124, 12, 127, 13|133, 12, 137, 13|155, 1... | 2015-07-28 03:27:40 Lua instructions: 14155k (1471 ms) [raw result] [visualize] |
#1000311 | Floodfill: 355, 0, 380, 20|432, 0, 448, 16|456, 0, 484, 4|540, 0, 548, 4|564, 0, 576, 8|620, 0, 672,... | 2015-07-20 23:43:38 Lua instructions: 71117k (7587 ms) [raw result] [visualize] |
#1000313 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-07-20 00:41:42 [raw result] [visualize] |
#1000217 | Floodfill: 168, 19, 196, 20|142, 20, 160, 24|208, 21, 224, 24|129, 24, 140, 28|228, 25, 237, 28|119,... | 2015-07-19 09:57:20 Lua instructions: 7898k (931 ms) [raw result] [visualize] |
#1000019 | Floodfill: 13, 12, 32, 32|47, 17, 102, 26|149, 17, 201, 29|223, 17, 274, 26|280, 19, 329, 29|47, 52,... | 2015-07-18 06:15:34 Lua instructions: 3208k (338 ms) [raw result] [visualize] |
#1000301 | javax.imageio.IIOException: Can't get input stream from URL! | 2015-07-17 14:44:56 [raw result] [visualize] |
#1000090 | Floodfill: 0, 60, 300, 80|159, 68, 189, 77 | 2015-07-16 05:58:07 Lua instructions: 1366k (154 ms) [raw result] [visualize] |
#1000329 | Floodfill: 92, 0, 220, 112|0, 5, 92, 104|92, 8, 104, 20|72, 16, 76, 24|88, 28, 92, 32|92, 36, 96, 40... | 2015-07-14 21:32:05 Lua instructions: 1243k (133 ms) [raw result] [visualize] |
#183 | Floodfill: 8, 0, 10, 8|20, 0, 28, 6|34, 0, 94, 30|104, 0, 108, 4|120, 0, 124, 4|132, 0, 136, 4|148, ... | 2015-07-13 09:29:17 Lua instructions: 1271k (234 ms) [raw result] [visualize] |
#1000328 | Floodfill: 12, 11, 32, 26|180, 15, 275, 27|25, 44, 28, 48|13, 48, 32, 82|92, 48, 107, 60|44, 56, 76,... | 2015-07-13 07:20:48 Lua instructions: 4081k (425 ms) [raw result] [visualize] |
#1000221 | Floodfill: | 2015-07-12 21:35:44 Lua instructions: 48656k (5260 ms) [raw result] [visualize] |
#1000327 | Floodfill: 0, 3, 2, 5|256, 0, 288, 92|284, 0, 316, 24|320, 0, 328, 4|580, 0, 584, 8|748, 0, 752, 4|7... | 2015-07-12 19:35:45 Lua instructions: 70837k (7540 ms) [raw result] [visualize] |
#1000314 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-07-03 21:24:31 [raw result] [visualize] |
#1000315 | Floodfill: 192, 0, 204, 12|208, 0, 216, 4|224, 0, 232, 12|240, 0, 252, 8|260, 0, 264, 4|292, 0, 312,... | 2015-07-03 21:24:24 Lua instructions: 16279k (1742 ms) [raw result] [visualize] |
#1000294 | Floodfill: 159, 0, 160, 1|168, 0, 169, 1|3, 25, 48, 37|55, 26, 114, 41|120, 24, 168, 37 | 2015-06-22 01:10:45 Lua instructions: 517k (58 ms) [raw result] [visualize] |
#1000169 | Floodfill: 1, 7, 19, 22|288, 9, 371, 21|386, 9, 502, 21|508, 9, 610, 21|616, 9, 898, 21|913, 9, 954,... | 2015-06-03 01:59:26 Lua instructions: 3468k (500 ms) [raw result] [visualize] |
#1000076 | Floodfill: 25, 28, 32, 77|32, 28, 63, 77 | 2015-05-19 01:47:09 Lua instructions: 670k (199 ms) [raw result] [visualize] |
#1000159 | Floodfill: 5, 6, 10, 9|4, 640, 11, 644 | 2015-05-06 13:33:54 Lua instructions: 464k (153 ms) [raw result] [visualize] |
#509 | Floodfill: | 2015-05-04 10:42:46 Lua instructions: 603k (67 ms) [raw result] [visualize] |
#1000211 | Floodfill: 8, 0, 216, 224|72, 4, 87, 8|133, 4, 144, 7|64, 8, 72, 12|147, 8, 156, 12|56, 12, 63, 16|1... | 2015-05-02 05:08:15 Lua instructions: 2775k (412 ms) [raw result] [visualize] |
#1000232 | Floodfill: 132, 0, 144, 24|158, 0, 160, 3|164, 0, 168, 4|180, 0, 184, 8|188, 0, 204, 36|212, 0, 216,... | 2015-05-02 00:36:32 Lua instructions: 18084k (1927 ms) [raw result] [visualize] |
#1000205 | java.lang.OutOfMemoryError: Java heap space | 2015-05-01 20:13:37 [raw result] [visualize] |
#1000245 | Floodfill: 3, 2, 17, 18|6, 26, 24, 37|37, 26, 58, 37|71, 26, 97, 37|109, 27, 142, 37|156, 27, 194, 3... | 2015-04-30 12:45:18 Lua instructions: 60944k (6434 ms) [raw result] [visualize] |
#1000215 | Floodfill: 104, 16, 116, 20|80, 20, 96, 24|124, 20, 140, 24|72, 24, 80, 27|140, 24, 148, 27|64, 28, ... | 2015-04-30 11:41:07 Lua instructions: 2869k (423 ms) [raw result] [visualize] |
#1000239 | Floodfill: 280, 0, 312, 4|324, 0, 334, 4|343, 0, 354, 4|264, 4, 282, 16|312, 4, 323, 5|96, 8, 280, 2... | 2015-04-29 03:28:38 Lua instructions: 17834k (1937 ms) [raw result] [visualize] |
#1000233 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-04-27 19:55:04 [raw result] [visualize] |
#1000157 | Floodfill: 45, 3, 52, 4|45, 3, 61, 22|3, 7, 5, 8|12, 5, 15, 7|6, 30, 26, 42|46, 32, 70, 46|86, 33, 1... | 2015-04-27 15:36:30 Lua instructions: 45850k (4780 ms) [raw result] [visualize] |
#1000012 | org.luaj.vm2.LuaError: LuaTimeOutSandbox.loader:35 java.lang.StackOverflowError | 2015-04-26 14:25:37 [raw result] [visualize] |
#1000123 | Floodfill: 11, 0, 56, 20|61, 2, 146, 15|7, 26, 23, 40|186, 24, 256, 40|261, 28, 318, 41|7, 47, 23, 6... | 2015-04-22 14:40:27 Lua instructions: 8670k (1059 ms) [raw result] [visualize] |
#112 | Floodfill: 0, 0, 100, 56 | 2015-04-08 13:44:01 Lua instructions: 280k (142 ms) [raw result] [visualize] |
Snippet ID: | #409 |
Snippet name: | Grid + Floodfill |
Eternal ID of this version: | #409/1 |
Text MD5: | 67e162b9b9d2b3719a8462a439c42351 |
Author: | stefan |
Category: | image recognition |
Type: | Lua code - Image recognition |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2015-02-06 00:07:24 |
Source code size: | 1363 bytes / 58 lines |
Pitched / IR pitched: | No / Yes |
Views / Downloads: | 2455 / 241 |
Referenced in: | #3000382 - Answer for ferdie (>> t = 1, f = 0) #3000383 - Answer for funkoverflow (>> t=1, f=0 okay) |