s_id string | p_id string | u_id string | date string | language string | original_language string | filename_ext string | status string | cpu_time string | memory string | code_size string | code string | error string | stdout string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s677102784 | p02403 | u733357255 | 1551613669 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | H,W = map(int, input().split())
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print(\n\n)
| File "/tmp/tmp5c2ep5lb/tmpsv8gw17l.py", line 6
print(\n\n)
^
SyntaxError: unexpected character after line continuation character
| |
s365123778 | p02403 | u733357255 | 1551614356 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
print('\n')
| File "/tmp/tmpzk1t9dub/tmpzi7dpj_i.py", line 7
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s009902525 | p02403 | u733357255 | 1551614372 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
| File "/tmp/tmpgck84hrz/tmp8c4b7ltv.py", line 7
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s901836747 | p02403 | u733357255 | 1551614402 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
print()
| File "/tmp/tmptks23tbr/tmpwhd72870.py", line 7
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s861673556 | p02403 | u733357255 | 1551614411 | Python | Python3 | py | Runtime Error | 0 | 0 | 174 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
print()
print()
| File "/tmp/tmp69octyvw/tmpg9kgfjrm.py", line 7
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s279034234 | p02403 | u733357255 | 1551614428 | Python | Python3 | py | Runtime Error | 0 | 0 | 182 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
print('\n')
print('\n')
| File "/tmp/tmpndt_s5q6/tmpc6vc9ko1.py", line 7
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s215904633 | p02403 | u733357255 | 1551614485 | Python | Python3 | py | Runtime Error | 0 | 0 | 171 | while True:
H,W = map(int, input().split())
if H==0 and W==0: break
for y in range(0,H):
for x in range(0,W):
print("#",end="")
print('\n')
print('\n')
| File "/tmp/tmp_1et77wh/tmpkx5fn3qn.py", line 8
print('\n')
^
IndentationError: unindent does not match any outer indentation level
| |
s886435220 | p02403 | u928633434 | 1555820744 | Python | Python3 | py | Runtime Error | 0 | 0 | 189 | H,W = (int(x) for x in input().split())
if H == 0 and W == 0:
break
i = 0
while i < H:
j = 0
while j < W:
print ("#", end='')
j += 1
print ('')
i += 1
| File "/tmp/tmpwk79knev/tmp3hi8ur7q.py", line 4
break
^^^^^
SyntaxError: 'break' outside loop
| |
s649001405 | p02403 | u928633434 | 1555820816 | Python | Python3 | py | Runtime Error | 0 | 0 | 232 | while True:
H,W = (int(x) for x in input().split())
if H == 0 and W == 0:
break
i = 0
while i < H:
j = 0
while j < W:
print ("#", end='')
j += 1
print ('')
i += 1
| File "/tmp/tmpjeoczzp_/tmpq5uf8u3y.py", line 2
H,W = (int(x) for x in input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s437365103 | p02403 | u928633434 | 1555820847 | Python | Python3 | py | Runtime Error | 0 | 0 | 232 | while True:
H,W = (int(x) for x in input().split())
if H == 0 and W == 0:
break
i = 0
while i < H:
j = 0
while j < W:
print ("#", end='')
j += 1
print ('')
i += 1
| File "/tmp/tmpxtookpwm/tmp1k1ukcyi.py", line 2
H,W = (int(x) for x in input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s174992915 | p02403 | u936370024 | 1555859000 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | while True:
H = int(input())
W = int(input())
if H == 0 and W == 0:
break
for i in range(H):
print('#'*W)
| Traceback (most recent call last):
File "/tmp/tmpdh8lo8xk/tmptsc_1a2d.py", line 2, in <module>
H = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s657665551 | p02403 | u638889288 | 1555918827 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | while True:
H,W=map(int,input().split())
for i in range(H):
pirnt("W"*#)
| File "/tmp/tmps4q_pqd2/tmpad5gpwej.py", line 4
pirnt("W"*#)
^
SyntaxError: '(' was never closed
| |
s741805438 | p02403 | u638889288 | 1555918849 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | while True:
H,W=map(int,input().split())
for i in range(H):
pirnt(W*"#")
print("")
| Traceback (most recent call last):
File "/tmp/tmpua3mu90i/tmp2qmk8q7d.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s544609588 | p02403 | u638889288 | 1555918868 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | while True:
H,W=map(int,input().split())
for i in range(H):
print(W*"#")
print("")
| Traceback (most recent call last):
File "/tmp/tmp1fmorwlb/tmpwa667ukw.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s784690918 | p02403 | u638889288 | 1555919461 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | while True:
H,W=map(int,input().split())
if H==0 and W==0:
for i in range(H):
print(W*"#")
print("")
| Traceback (most recent call last):
File "/tmp/tmpfl_n03ck/tmpnsldwqvx.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s840712959 | p02403 | u264450287 | 1555921232 | Python | Python3 | py | Runtime Error | 0 | 0 | 334 | #include <iostream>
using namespace std;
int main(void){
int H,W;
int i,j;
while(1){
cin >> H,cin >> W;
i=0;
j=0;
for(i=0;i<H;i++){
for(j=0;j<W;j++){
cout << "#";
}
cout << endl;
}
cout << endl;
if(H==0 && W==0)
break;
}
... | File "/tmp/tmpjw7cex2n/tmp0lrsk2ph.py", line 2
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s233045317 | p02403 | u264450287 | 1555921530 | Python | Python3 | py | Runtime Error | 0 | 0 | 334 | #include <iostream>
using namespace std;
int main(void){
int H,W;
int i,j;
while(1){
cin >> H,cin >> W;
i=0;
j=0;
for(i=0;i<H;i++){
for(j=0;j<W;j++){
cout << "#";
}
cout << endl;
}
cout << endl;
if(H==0 && W==0)
break;
}
... | File "/tmp/tmpbr_dq32j/tmpedx0fx_h.py", line 2
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s492331800 | p02403 | u264450287 | 1555922025 | Python | Python3 | py | Runtime Error | 0 | 0 | 337 | #include <iostream>
using namespace std;
int main(void){
int H,W;
int i,j;
while(1){
cin >> H;
cin >> W;
i=0;
j=0;
for(i=0;i<H;i++){
for(j=0;j<W;j++){
cout << '#';
}
cout << endl;
}
cout << endl;
if(H==0&&W==0)
break;
}... | File "/tmp/tmpngg8392h/tmpr_qtzl7y.py", line 2
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s428698018 | p02403 | u605451279 | 1555945867 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | for i in range(10000):
x = input().split()
h = int(x[0])
w = int(x[1])
for i in range(h):
for i in range(w):
print("#",end="")
print()
| Traceback (most recent call last):
File "/tmp/tmp4q9khxyr/tmpeyj_d989.py", line 2, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s577898177 | p02403 | u638889288 | 1556139917 | Python | Python3 | py | Runtime Error | 0 | 0 | 217 | #include<iostream>
using namespace std;
int main(){
int H,W;
while(cin >> H >> W && (H!=0 || W!=0)){
for (int i = 0; i < H; i += 1){
cout << "#"*W << endl;
}
}
return 0;
}
| File "/tmp/tmpbn7a41tj/tmpc68twr6x.py", line 2
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s489215495 | p02403 | u482227082 | 1556422292 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 |
h,w = map(int, input().split())
if h == 0 and w == 0:
break
else:
for i in range(h):
print("#"*w)
print()
| File "/tmp/tmp_3n7q8np/tmpdaw1x_pg.py", line 4
break
^^^^^
SyntaxError: 'break' outside loop
| |
s304432140 | p02403 | u482227082 | 1556422306 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 |
h,w = map(int, input().split())
if h == 0 and w == 0:
else:
for i in range(h):
print("#"*w)
print()
| File "/tmp/tmpggbae467/tmpcl6jfq3j.py", line 4
else:
^
IndentationError: expected an indented block after 'if' statement on line 3
| |
s252409910 | p02403 | u482227082 | 1556422319 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 |
h,w = map(int, input().split())
for i in range(h):
print("#"*w)
print()
| File "/tmp/tmprckmqio6/tmpnscxax5t.py", line 3
for i in range(h):
IndentationError: unexpected indent
| |
s450128736 | p02403 | u313600138 | 1556590942 | Python | Python3 | py | Runtime Error | 0 | 0 | 177 | while H!=0 and W!=0:
H,W = map(int, input().split())
for i in range(H):
for j in range(W):
print('#', end="")
print()
print()
if W==0 and H==0:
break
| Traceback (most recent call last):
File "/tmp/tmprq6nzni3/tmpip9u8hs7.py", line 1, in <module>
while H!=0 and W!=0:
^
NameError: name 'H' is not defined
| |
s434310736 | p02403 | u548252256 | 1556608787 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | while True:
H,W = map(int,input().split(" "))
if H == 0 and W == 0:
break
print(*["#" for _ in range(H)]) for _ in range(W)
| File "/tmp/tmplwi49rja/tmp4vxdyl8g.py", line 7
print(*["#" for _ in range(H)]) for _ in range(W)
^^^
SyntaxError: invalid syntax
| |
s266741563 | p02403 | u344890307 | 1556679356 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | while True:
H,W=map(int,input().split())
for i in range(H):
print("#"*W)
print("\n")
| Traceback (most recent call last):
File "/tmp/tmpse2_f5xp/tmpnxlb865l.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s929973407 | p02403 | u344890307 | 1556679424 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | while True:
H,W=map(int,input().split())
for i in range(H):
print("#"*W)
| Traceback (most recent call last):
File "/tmp/tmpqg5gbur5/tmpmrs_w7qi.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s341861815 | p02403 | u344890307 | 1556679532 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | while True:
H,W=map(int,input().split())
for i in range(H):
if a==b==0:
break
print("#"*W)
print("\n")
| Traceback (most recent call last):
File "/tmp/tmpwlxmgs45/tmp7nb4qfxj.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s637304854 | p02403 | u344890307 | 1556679662 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | while True:
H,W=map(int,input().split())
for i in range(H):
if H==0:
break
else:
print("#"*W)
print("\n")
| Traceback (most recent call last):
File "/tmp/tmp7j1bui62/tmpbh9pffyn.py", line 2, in <module>
H,W=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s267322164 | p02403 | u630518143 | 1556807215 | Python | Python3 | py | Runtime Error | 0 | 0 | 279 | square = []
while True:
data = [int(e) for e in input().split()]
if data == []:
break
square.append(data)
for i in range(len(square)):
for j in range(square[i][0]):
for k in range(square[i][1]):
print("#", end="")
print()
| Traceback (most recent call last):
File "/tmp/tmp_78zdp3v/tmp5as8yv1c.py", line 3, in <module>
data = [int(e) for e in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s891127781 | p02403 | u630518143 | 1556807251 | Python | Python3 | py | Runtime Error | 0 | 0 | 278 | square = []
while True:
data = [int(e) for e in input().split()]
if data == 0:
break
square.append(data)
for i in range(len(square)):
for j in range(square[i][0]):
for k in range(square[i][1]):
print("#", end="")
print()
| Traceback (most recent call last):
File "/tmp/tmpxdmge00f/tmpqhr2aibl.py", line 3, in <module>
data = [int(e) for e in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s190164532 | p02403 | u483716678 | 1558976779 | Python | Python | py | Runtime Error | 0 | 0 | 182 |
while True:
a,b=map(int,input().split() )
for i in range(a):
for j in range(b):
print('#',end='')
print()
if(a==0 and b==0):
break;
| Traceback (most recent call last):
File "/tmp/tmp9ik6x126/tmphun692wx.py", line 3, in <module>
a,b=map(int,input().split() )
^^^^^^^
EOFError: EOF when reading a line
| |
s555738582 | p02403 | u433250944 | 1559536971 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | while True:
H, W = map(int, input().split())
for j in range(H):
for i in range(W):
print('#',end='')
print()
if H == 0 and W == 0 :
break
| File "/tmp/tmp9fkxfr_q/tmp6clp5fo5.py", line 9
break
^^^^^
SyntaxError: 'break' outside loop
| |
s343173294 | p02403 | u818126736 | 1559537132 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in range(x):
for i in range(y):
print("#", end="")
print()
| Traceback (most recent call last):
File "/tmp/tmpx4esccs_/tmptxdrw4h3.py", line 1, in <module>
for i in range(x):
^
NameError: name 'x' is not defined
| |
s574071234 | p02403 | u818126736 | 1559537143 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in range(x):
for i in range(y):
print("#", end="")
print()
| Traceback (most recent call last):
File "/tmp/tmp54ht2c55/tmpzu69r0cy.py", line 1, in <module>
for i in range(x):
^
NameError: name 'x' is not defined
| |
s230952088 | p02403 | u818126736 | 1559537168 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in range(x):
for i in range(y):
print("#", end="")
print()
| Traceback (most recent call last):
File "/tmp/tmpsbmpt9c1/tmp9srxgztj.py", line 1, in <module>
for i in range(x):
^
NameError: name 'x' is not defined
| |
s856524248 | p02403 | u818126736 | 1559537337 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | while True:
x,y = map(int,input().split())
if H==W==0:
break;
for i in range(x):
print("#"*y)
print()
| Traceback (most recent call last):
File "/tmp/tmpu4p75zab/tmpt43ytz_4.py", line 2, in <module>
x,y = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s947381105 | p02403 | u818126736 | 1559537356 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | while True:
x,y = map(int,input().split())
if H==W==0:
break;
for i in range(x):
print("#"*y)
print()
| Traceback (most recent call last):
File "/tmp/tmp0gexbs25/tmp0om7bicu.py", line 2, in <module>
x,y = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s992249532 | p02403 | u818126736 | 1559537386 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | while True:
x,y = map(int,input().split())
if H==W==0:
break;
for i in range(x):
print("#"*y)
print()
| Traceback (most recent call last):
File "/tmp/tmp2ppvz0st/tmpipfvrrs6.py", line 2, in <module>
x,y = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s397189055 | p02403 | u636711749 | 1422844480 | Python | Python3 | py | Runtime Error | 0 | 0 | 242 | while True:
(H, W) = [int(x) for x in input().split()]
if H == W == 0:
break
for hc in range(H):
for wc in range(W):
print('#',end=' ')
print()
print() | File "/tmp/tmpw0549i9v/tmpob6hxcjv.py", line 13
print()
^
IndentationError: unindent does not match any outer indentation level
| |
s584611513 | p02403 | u745846646 | 1422844490 | Python | Python3 | py | Runtime Error | 0 | 0 | 215 | while True:
(H, W) = [int(x) for x in input().split()]
if H == W == 0:
break
for wc in range(W):
for hc in range(H):
print('#', end = ' ')
print()
print() | File "/tmp/tmpjduo118a/tmp34z8kr2_.py", line 10
print()
^
IndentationError: unindent does not match any outer indentation level
| |
s685633277 | p02403 | u527848444 | 1422844498 | Python | Python3 | py | Runtime Error | 0 | 0 | 187 | While True:
(H,W) = [int(x) for x in input().split()]
if H == W == 0:
break
for hc in range(H):
for wc in range(W):
print('#', end= ' ')
print()
print() | File "/tmp/tmp1v0ka200/tmppsgfwuuw.py", line 1
While True:
^^^^
SyntaxError: invalid syntax
| |
s084238614 | p02403 | u527848444 | 1422844677 | Python | Python3 | py | Runtime Error | 0 | 0 | 190 | while True:
(H,W) = [int(x) for x in input().split()]
if H == W == 0:
break
for hc in range(H):
for wc in range(W):
print('#', end= '')
print()
print() | File "/tmp/tmp2jp029hd/tmp4stooe5f.py", line 7
for wc in range(W):
^
IndentationError: expected an indented block after 'for' statement on line 6
| |
s656264375 | p02403 | u527848444 | 1422844692 | Python | Python3 | py | Runtime Error | 0 | 0 | 194 | while True:
(H,W) = [int(x) for x in input().split()]
if H == W == 0:
break
for hc in range(H):
for wc in range(W):
print('#', end= '')
print()
print() | File "/tmp/tmpuvsjaf0w/tmpns8oy42x.py", line 8
print('#', end= '')
^
IndentationError: expected an indented block after 'for' statement on line 7
| |
s746925009 | p02403 | u745846646 | 1422844835 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | while True:
(H, W) = [int(x) for x in input().split()]
if H == W == 0:
break
for hc in range(H):
print('#' * W)
print() | File "/tmp/tmpsb5zyu6j/tmp_j84hklp.py", line 2
(H, W) = [int(x) for x in input().split()]
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s428700522 | p02403 | u745846646 | 1422844927 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | while True:
(H, W) = [int(x) for x in input().split()]
if H == W == 0:
break
print((('#' * W) + '\n') * H) | File "/tmp/tmpx_ecwyqh/tmpswjun3ru.py", line 2
(H, W) = [int(x) for x in input().split()]
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s152724582 | p02403 | u376883550 | 1424090702 | Python | Python | py | Runtime Error | 0 | 0 | 65 | H, W = map(int, raw_input())
for i in range(H):
print '#' * W | File "/tmp/tmpb4qf50ep/tmphtmhjaug.py", line 3
print '#' * W
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s522944976 | p02403 | u879226672 | 1424448303 | Python | Python | py | Runtime Error | 0 | 0 | 139 | while True:
H,W = map(int,raw_input().split())
if H,W == 0,0:
break
for k in range(H):
print "#"*W
print "" | File "/tmp/tmpr0bvk_go/tmpkytf0mwq.py", line 3
if H,W == 0,0:
^
SyntaxError: invalid syntax
| |
s144235078 | p02403 | u604774382 | 1430220234 | Python | Python | py | Runtime Error | 0 | 0 | 148 | import sys
while True:
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
for i in range( nums[1] ):
print( "#"*nums[1], "\n" ) | Traceback (most recent call last):
File "/tmp/tmpe7is5hdy/tmprs_gvl3y.py", line 4, in <module>
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpe7is5hdy/tmprs_gvl3y.py", line 4, in <listcomp>
nums = [ int(... | |
s651282509 | p02403 | u604774382 | 1430220442 | Python | Python | py | Runtime Error | 0 | 0 | 149 | import sys
while True:
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
for i in range( nums[0] ):
print( "#"*nums[1] )
print | Traceback (most recent call last):
File "/tmp/tmptr50q_81/tmpw0t6zpuc.py", line 4, in <module>
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmptr50q_81/tmpw0t6zpuc.py", line 4, in <listcomp>
nums = [ int(... | |
s431852727 | p02403 | u604774382 | 1430220466 | Python | Python | py | Runtime Error | 0 | 0 | 149 | import sys
while True:
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
for i in range( nums[0] ):
print( "#"*nums[1] )
print | Traceback (most recent call last):
File "/tmp/tmpophwvomn/tmpym4va5vs.py", line 4, in <module>
nums = [ int( val ) for val in sys.stdin.readline().split( " " ) ]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpophwvomn/tmpym4va5vs.py", line 4, in <listcomp>
nums = [ int(... | |
s617779360 | p02403 | u137456386 | 1431366867 | Python | Python | py | Runtime Error | 0 | 0 | 218 | while 1:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
print
break
if counter > 0:
print
for i in xrange(H):
for j in xrange(W):
if j == (W - 1):
print '#'
else:
print '#',
print | File "/tmp/tmpyw9tefog/tmpx7wrpmp4.py", line 11
print '#'
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s904226578 | p02403 | u172616925 | 1435566268 | Python | Python | py | Runtime Error | 0 | 0 | 114 | while true:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
break
print ("#" * W "\n") * H | File "/tmp/tmpssbywbye/tmp5wwygof8.py", line 3
if H == 0 and W == 0:
IndentationError: unexpected indent
| |
s607454282 | p02403 | u172616925 | 1435566285 | Python | Python | py | Runtime Error | 0 | 0 | 116 | while true:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
break
print (("#" * W "\n") * H) | File "/tmp/tmpdqheei0w/tmp6vjid1jp.py", line 3
if H == 0 and W == 0:
IndentationError: unexpected indent
| |
s098277289 | p02403 | u172616925 | 1435566320 | Python | Python | py | Runtime Error | 0 | 0 | 118 | while true:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
break
print (("#" * W + "\n") * H) | File "/tmp/tmpibnuwvg_/tmp4y_lbc5i.py", line 3
if H == 0 and W == 0:
IndentationError: unexpected indent
| |
s962982835 | p02403 | u172616925 | 1435566352 | Python | Python | py | Runtime Error | 0 | 0 | 118 | while True:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
break
print (("#" * W + "\n") * H) | File "/tmp/tmph8qjuaab/tmp8e60um6f.py", line 3
if H == 0 and W == 0:
IndentationError: unexpected indent
| |
s533874094 | p02403 | u745846646 | 1437962953 | Python | Python3 | py | Runtime Error | 0 | 0 | 199 | while True:
(H, W) = [int(i) for i in input().split()]
if H == W == 0:
break
for a range(H):
for b in range(W):
print('#', end='')
print()
print() | File "/tmp/tmpkkq1fbaq/tmpbplooz7f.py", line 6
for a range(H):
^^^^^
SyntaxError: invalid syntax
| |
s205529011 | p02403 | u614711522 | 1439859630 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | while True:
( H, W) = [ int(i) for i in input().split() ]
if H == W == 0: break
for h in range(H): print( '#' * w) | Traceback (most recent call last):
File "/tmp/tmpms63akof/tmpaoaqec3p.py", line 2, in <module>
( H, W) = [ int(i) for i in input().split() ]
^^^^^^^
EOFError: EOF when reading a line
| |
s765327409 | p02403 | u614711522 | 1439859701 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | while True:
( H, W) = [ int(i) for i in input().split() ]
if H == W == 0: break
for h in range(H): print( '#' * w) | Traceback (most recent call last):
File "/tmp/tmpyx15ddvr/tmp3effohjr.py", line 2, in <module>
( H, W) = [ int(i) for i in input().split() ]
^^^^^^^
EOFError: EOF when reading a line
| |
s547930830 | p02403 | u614711522 | 1439859721 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | while True:
( H, W) = [ int(i) for i in input().split() ]
if H == W == 0: break
for h in range(H): print( '#' * w) | Traceback (most recent call last):
File "/tmp/tmpmtslm399/tmpubvifdgn.py", line 2, in <module>
( H, W) = [ int(i) for i in input().split() ]
^^^^^^^
EOFError: EOF when reading a line
| |
s116568936 | p02403 | u614711522 | 1439860017 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | while True:
( H, W) = [ int(i) for i in input().split() ]
if H == W == 0: break
for h in range(H): print( '#' * w)
print() | Traceback (most recent call last):
File "/tmp/tmphtp_4ls2/tmputail75p.py", line 2, in <module>
( H, W) = [ int(i) for i in input().split() ]
^^^^^^^
EOFError: EOF when reading a line
| |
s599778415 | p02403 | u297949443 | 1449932543 | Python | Python | py | Runtime Error | 0 | 0 | 132 | import sys
for v in iter(sys.stdin,''):
h,w = map(int,v.split())
for i in range(h+1):
print('#'*w)
print('') | Traceback (most recent call last):
File "/tmp/tmpuubgmc96/tmp70glkvie.py", line 3, in <module>
for v in iter(sys.stdin,''):
^^^^^^^^^^^^^^^^^^
TypeError: iter(v, w): v must be callable
| |
s151468674 | p02403 | u279955105 | 1450876667 | Python | Python3 | py | Runtime Error | 0 | 0 | 185 | while True:
H,W = list(map(int, input().split()))
if (H == 0 and W == 0):
break
else:
for n in range(0, H):
s = ""
for m in range(0, W):
s += "#"
print(s)
print("" | File "/tmp/tmpg6zpnyyj/tmpyzysa7rs.py", line 11
print(""
^
SyntaxError: '(' was never closed
| |
s165358537 | p02403 | u803327846 | 1453863918 | Python | Python | py | Runtime Error | 0 | 0 | 143 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(H):
for j in range(W):
print "#",
print ""
| File "/tmp/tmpohg7z25b/tmpb97oczf7.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s666550746 | p02403 | u803327846 | 1453863926 | Python | Python | py | Runtime Error | 0 | 0 | 143 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(H):
for j in range(W):
print "#",
print ""
| File "/tmp/tmpra3j1es4/tmp1yqn137l.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s004065963 | p02403 | u803327846 | 1453864035 | Python | Python | py | Runtime Error | 0 | 0 | 149 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(W):
width += "#"
for j in range(H):
print width
| File "/tmp/tmpg48713r9/tmp9iavpbs2.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s291557330 | p02403 | u803327846 | 1453864087 | Python | Python | py | Runtime Error | 0 | 0 | 159 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
width = ""
for i in range(W):
width += "#"
for j in range(H):
print width
| File "/tmp/tmphc7oc3sl/tmp83h2hz7j.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s811440874 | p02403 | u803327846 | 1453864181 | Python | Python | py | Runtime Error | 0 | 0 | 150 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(W):
width[i] = "#"
for j in range(H):
print width
| File "/tmp/tmpoovu5b3p/tmpuenc6agw.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s667738375 | p02403 | u803327846 | 1453864504 | Python | Python | py | Runtime Error | 0 | 0 | 151 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(W):
width[i] = '#'
for j in range(H):
print width
| File "/tmp/tmp5sacgsny/tmpsn8pq433.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s519041397 | p02403 | u803327846 | 1453864513 | Python | Python | py | Runtime Error | 0 | 0 | 151 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
for i in range(W):
width[i] = '#'
for j in range(H):
print width
| File "/tmp/tmpd7gnzy10/tmpc6xzem86.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s474162455 | p02403 | u803327846 | 1453864634 | Python | Python | py | Runtime Error | 0 | 0 | 159 | while 1:
H , W = map(int, raw_input().split())
if H == W == 0:
break
width = ''
for i in range(W):
width += '#'
for j in range(H):
print width
| File "/tmp/tmpbily0k0s/tmplbo8oa_d.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s313187318 | p02403 | u803327846 | 1453864650 | Python | Python | py | Runtime Error | 0 | 0 | 165 | while 1:
H , W = map(int, raw_input().split())
if H == 0 and W == 0:
break
width = ''
for i in range(W):
width += '#'
for j in range(H):
print width
| File "/tmp/tmplvk4se4_/tmptgr3uvaz.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s302039636 | p02403 | u803327846 | 1453864725 | Python | Python | py | Runtime Error | 0 | 0 | 162 | while 1:
H , W = map(int, raw_input().split(" "))
if H == W == 0:
break
width = ''
for i in range(W):
width += '#'
for j in range(H):
print width
| File "/tmp/tmpk75_hi73/tmpzzjaz4oo.py", line 2
H , W = map(int, raw_input().split(" "))
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s523641610 | p02403 | u803327846 | 1453864788 | Python | Python | py | Runtime Error | 0 | 0 | 163 | while 1:
H , W = map(int, raw_input().split(" "))
if H == W == 0:
break
width = ''
for _ in range(W):
width += '#'
for _ in range(H):
print width
| File "/tmp/tmp5oirpbod/tmp8vzmcmhe.py", line 2
H , W = map(int, raw_input().split(" "))
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s473354980 | p02403 | u803327846 | 1453864797 | Python | Python | py | Runtime Error | 0 | 0 | 168 | while 1:
H , W = map(int, raw_input().split(" "))
if H == 0 or W == 0:
break
width = ''
for _ in range(W):
width += '#'
for _ in range(H):
print width
| File "/tmp/tmpu8f7u9r3/tmpvm3f5ini.py", line 2
H , W = map(int, raw_input().split(" "))
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s571695185 | p02403 | u803327846 | 1453864899 | Python | Python | py | Runtime Error | 0 | 0 | 132 | while 1:
H , W = map(int, raw_input().split())
if H == 0 and W == 0:
break
for _ in range(H):
print ("#" * W + "\n")
| File "/tmp/tmpn5s575us/tmp54z6gk2c.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s299718335 | p02403 | u803327846 | 1453864917 | Python | Python | py | Runtime Error | 0 | 0 | 127 | while 1:
H , W = map(int, raw_input().split())
if H == 0 and W == 0:
break
for _ in range(H):
print ("#" * W + "\n")
| File "/tmp/tmp_4yqwp_u/tmpzasws_od.py", line 2
H , W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s664708255 | p02403 | u803327846 | 1453873852 | Python | Python | py | Runtime Error | 0 | 0 | 85 | while 1:
H, W = map(int, raw_input().stlip)
for i in range(H):
print "#" * W | File "/tmp/tmp6om6u_by/tmpegsci2dr.py", line 4
print "#" * W
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s321135188 | p02403 | u803327846 | 1453873868 | Python | Python | py | Runtime Error | 0 | 0 | 87 | while 1:
H, W = map(int, raw_input().stlip())
for i in range(H):
print "#" * W | File "/tmp/tmplbkneq0y/tmpnc_18cii.py", line 4
print "#" * W
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s220615560 | p02403 | u803327846 | 1453873913 | Python | Python | py | Runtime Error | 0 | 0 | 121 | while 1:
H, W = map(int, raw_input().stlip())
if H == 0 and W == 0:
break
for i in range(H):
print "#" * W | File "/tmp/tmpmjh0kxs8/tmpxuy6ygwy.py", line 6
print "#" * W
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s515529150 | p02403 | u803327846 | 1453874030 | Python | Python | py | Runtime Error | 0 | 0 | 120 | while 1:
h, w = map(int, raw_input().stlip())
if H == 0 and W == 0:
break
for i in range(h):
print "#" * w | File "/tmp/tmp6rwke7e4/tmp_flb56md.py", line 6
print "#" * w
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s922412783 | p02403 | u803327846 | 1453874116 | Python | Python | py | Runtime Error | 0 | 0 | 120 | while 1:
h, w = map(int, raw_input().stlip())
if h == 0 and w == 0:
break
for i in range(h):
print "#" * w | File "/tmp/tmpy7whsuji/tmpli69o5h_.py", line 6
print "#" * w
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s058423611 | p02403 | u803327846 | 1453877264 | Python | Python | py | Runtime Error | 0 | 0 | 126 | while 1:
h, w = map(int, raw_input().stlip())
if h == 0 and w == 0:
break
for i in range(h):
print "#" * w
print | File "/tmp/tmpmzx523ko/tmpq6fjx138.py", line 6
print "#" * w
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s126258372 | p02403 | u803327846 | 1453877271 | Python | Python | py | Runtime Error | 0 | 0 | 127 | while 1:
h, w = map(int, raw_input().stlip())
if h == 0 and w == 0:
break
for i in range(h):
print "#" * w
print | File "/tmp/tmpmi12q856/tmpr7cfi68c.py", line 6
print "#" * w
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s576748556 | p02403 | u803327846 | 1453877298 | Python | Python | py | Runtime Error | 0 | 0 | 127 | while 1:
h, w = map(int, raw_input().split())
if h == 0 and w == 0:
break
for i in range(h):
print "#" * w
print | File "/tmp/tmpn03yya53/tmpwv5k4o5g.py", line 6
print "#" * w
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s591889541 | p02403 | u724923896 | 1453964887 | Python | Python | py | Runtime Error | 0 | 0 | 207 | while 1:
H, W = map(raw_input().split())
if H == 0 and W == 0:
break
else:
for i in range(0, H-1):
for j in range(0, W-1):
print #
print '\n'
print '\n' | File "/tmp/tmpase_9vcl/tmplectd6_e.py", line 10
print '\n'
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s686330085 | p02403 | u724923896 | 1453965029 | Python | Python | py | Runtime Error | 0 | 0 | 159 | while 1:
H, W = map(raw_input().split())
if H == 0 and W == 0:
break
else:
for i in range(0, H-1):
print '#'*W
print '\n' | File "/tmp/tmpr8r98ura/tmpar21b448.py", line 8
print '#'*W
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s277461192 | p02403 | u724923896 | 1453965090 | Python | Python | py | Runtime Error | 0 | 0 | 142 | while 1:
H, W = map(raw_input().split())
if H == 0 and W == 0:
break
for i in range(0, H-1):
print '#'*W
print '\n' | File "/tmp/tmpp1c7yde7/tmph2u_f_ft.py", line 7
print '#'*W
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s836135670 | p02403 | u613805578 | 1454160962 | Python | Python | py | Runtime Error | 0 | 0 | 116 | while 1:
H, W = map(int,raw_input().split())
??????if H == W == 0:
break
print (('#' * W + '/n') * H) | File "/tmp/tmpnu331as4/tmp66vsb1dz.py", line 3
??????if H == W == 0:
^
SyntaxError: invalid syntax
| |
s350190802 | p02403 | u613805578 | 1454161257 | Python | Python | py | Runtime Error | 0 | 0 | 102 | while 1:
H, W = map(int, raw_input().split())
if H == 0 and W == 0:
break
print (("#" * W + "/n") * H) | File "/tmp/tmpoxio4ouc/tmpsys400sv.py", line 2
H, W = map(int, raw_input().split())
^
IndentationError: expected an indented block after 'while' statement on line 1
| |
s185939420 | p02403 | u970436839 | 1454169519 | Python | Python | py | Runtime Error | 0 | 0 | 155 | while true:
H, W = map(int, raw_input().split())
for i in range(H):
width = ''
for j in range(W):
width += '#'
print width
print '' | File "/tmp/tmpjs9adlol/tmpg585z4z1.py", line 7
print width
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s988801941 | p02403 | u970436839 | 1454169533 | Python | Python | py | Runtime Error | 0 | 0 | 155 | while true:
H, W = map(int, raw_input().split())
for i in range(H):
width = ""
for j in range(W):
width += "#"
print width
print "" | File "/tmp/tmp8i1ukfx1/tmpbmg0tj1v.py", line 7
print width
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s208512774 | p02403 | u970436839 | 1454169542 | Python | Python | py | Runtime Error | 0 | 0 | 155 | while True:
H, W = map(int, raw_input().split())
for i in range(H):
width = ""
for j in range(W):
width += "#"
print width
print "" | File "/tmp/tmp_0ur6qiy/tmp8unlcmo9.py", line 7
print width
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s392920309 | p02403 | u824204304 | 1454261125 | Python | Python | py | Runtime Error | 0 | 0 | 139 | while True:
a,b = map(int, raw_input().split())
if a == 0 && b == 0:
break
for i in range(a):
print b*'#'
| File "/tmp/tmps27qc3ai/tmplgfnjl2l.py", line 4
if a == 0 && b == 0:
^
SyntaxError: invalid syntax
| |
s881967161 | p02403 | u824204304 | 1454261200 | Python | Python | py | Runtime Error | 0 | 0 | 161 | while True:
a,b = map(int, raw_input().split())
if a == 0 && b == 0:
break
else
for i in range(a):
print b*'#'
print "" | File "/tmp/tmpshxnio94/tmp45hzb553.py", line 4
if a == 0 && b == 0:
^
SyntaxError: invalid syntax
| |
s585213096 | p02403 | u824204304 | 1454261247 | Python | Python | py | Runtime Error | 0 | 0 | 154 | while True:
a,b = map(int, raw_input().split())
if a + b ==0:
break
else
for i in range(a):
print b*'#'
print "" | File "/tmp/tmp5wsinaci/tmpnyfxo3pa.py", line 7
else
^
SyntaxError: expected ':'
| |
s190198536 | p02403 | u824204304 | 1454261254 | Python | Python | py | Runtime Error | 0 | 0 | 154 | while True:
a,b = map(int, raw_input().split())
if a + b ==0:
break
else
for i in range(a):
print b*'#'
print "" | File "/tmp/tmpc5oiugc2/tmpw7vf1hgv.py", line 7
else
^
SyntaxError: expected ':'
| |
s655768472 | p02403 | u619765879 | 1454416063 | Python | Python | py | Runtime Error | 0 | 0 | 165 | while 1:
H = input()
W = input()
if H==0 and W==0:
break
for i in range(H):
for j in range(W):
sys.stdout.write('#')
sys.stdout.write('\n') | Traceback (most recent call last):
File "/tmp/tmpz3z7653l/tmpudm478_1.py", line 2, in <module>
H = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s611311238 | p02403 | u885889402 | 1454417551 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | n = int(input())
for i in range(n):
(H,W)=[int(s) for s in input().split()]
for j in range(H):
print("#"*W) | Traceback (most recent call last):
File "/tmp/tmpe9g3_o8y/tmp90_hqe9z.py", line 1, in <module>
n = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s533464184 | p02403 | u532962080 | 1454419748 | Python | Python | py | Runtime Error | 0 | 0 | 90 | while True:
H,W=map(int,raw_input().split())
if H==W==0:
print (('#'*W +'\n')*H) | Traceback (most recent call last):
File "/tmp/tmp5gy2vb17/tmpl5qp99wv.py", line 2, in <module>
H,W=map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.