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
s854802796
p02403
u177295149
1454422129
Python
Python
py
Runtime Error
0
0
154
while 1; H = input() W = input() for i in range(H);{ for k in range(W);{ print'#' } print"/n" } if(H =0 and W =0); break
File "/tmp/tmp2jnhxffp/tmp9c_pe4ws.py", line 1 while 1; ^ SyntaxError: invalid syntax
s731369900
p02403
u177295149
1454422194
Python
Python
py
Runtime Error
0
0
162
while 1; H = input() W = input() for i in range(H);{ for k in range(W);{ print'#' } print"/n" if(H =0 and W =0); break }
File "/tmp/tmpponjf9q8/tmpxlqy7ge3.py", line 1 while 1; ^ SyntaxError: invalid syntax
s085696523
p02403
u253463900
1454422372
Python
Python3
py
Runtime Error
0
0
118
y,x = [int(x) for x in input().split()] if(not y*x == 0): for i in range(y): print('#'*x) print('#'*x)
File "/tmp/tmpq6t77frj/tmpi7upclb9.py", line 4 print('#'*x) print('#'*x) ^^^^^ SyntaxError: invalid syntax
s467665067
p02403
u119456964
1454430432
Python
Python
py
Runtime Error
0
0
214
while 1: if H ==0 and W == 0: break else: H, W = map(int ,raw_input().split()) a = "" for i in range(W): a += '#' for i in range(H): print a
File "/tmp/tmphlbz3w4u/tmp1p1img15.py", line 12 print a ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s625432173
p02403
u436807165
1455583519
Python
Python
py
Runtime Error
0
0
117
while 1: h,w = map(int,raw_input().split()) if h == 0 and w == 0: break for number in range(h): print "#"*w \n
File "/tmp/tmpswph166t/tmptn9f86p2.py", line 6 print "#"*w \n ^ SyntaxError: unexpected character after line continuation character
s324120879
p02403
u436807165
1455583535
Python
Python
py
Runtime Error
0
0
117
while 1: h,w = map(int,raw_input().split()) if h == 0 and w == 0: break for number in range(h): print "#"*w /n
File "/tmp/tmpp8awa0iy/tmpenz5ywrh.py", line 6 print "#"*w /n ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s231585698
p02403
u148101999
1456474396
Python
Python
py
Runtime Error
0
0
179
import sys h,w = map(int,raw_input().split()) if h == 0 and w == 0: break for i in range(h): for j in range(w): sys.stdout.write("#") if i != h-1:print "\n",
File "/tmp/tmpmrllrkr1/tmpwt8lk9vf.py", line 10 if i != h-1:print "\n", ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s090679088
p02403
u653239976
1457021070
Python
Python
py
Runtime Error
0
0
244
#coding: UTF-8 while True: l = raw_input().split() H = int(l[0]) W = int(l[1]) if H != 0 and W != 0: a= 0 w = "#" * W while a < H: print w a += 1 print if H == 0 and W == 0: break if H <= 300 or W <= 300 break
File "/tmp/tmpiy9j136b/tmp0xqj8ggi.py", line 15 print w ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s951112759
p02403
u994049982
1458690316
Python
Python
py
Runtime Error
0
0
121
while True: a=map(int,input().split()) if a[0]==a[1]==0: break [print("#")*a[1] for i in range(a[0])]
Traceback (most recent call last): File "/tmp/tmp4yb1jsgn/tmpcnbuhzrx.py", line 2, in <module> a=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s731171120
p02403
u994049982
1458690333
Python
Python
py
Runtime Error
0
0
121
while True: a=map(int,input().split()) if a[0]==a[1]==0: break [print("#"*a[1]) for i in range(a[0])]
Traceback (most recent call last): File "/tmp/tmpk65zts19/tmp72bamtpz.py", line 2, in <module> a=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s711974571
p02403
u994049982
1458690371
Python
Python
py
Runtime Error
0
0
128
while True: a=map(int,input().split()) if a[0]==a[1]==0: break for i in range(a[0]): print("#"*a[1])
Traceback (most recent call last): File "/tmp/tmphcjv7cvd/tmpay51zna_.py", line 2, in <module> a=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s119000017
p02403
u994049982
1458690403
Python
Python
py
Runtime Error
0
0
125
while True: a=map(int,raw_input().split()) if a[0]==a[1]==0: break [print("#"*a[1]) for i in range(a[0])]
Traceback (most recent call last): File "/tmp/tmpurm60c3r/tmpotuk8am6.py", line 2, in <module> a=map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s141987598
p02403
u994049982
1458690451
Python
Python
py
Runtime Error
0
0
128
while True: a=map(int,input().split()) if a[0]==a[1]==0: break for i in range(a[0]): print("#"*a[1])
Traceback (most recent call last): File "/tmp/tmpbnd32uss/tmp7dgzzaf8.py", line 2, in <module> a=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s876663467
p02403
u463783070
1459335533
Python
Python3
py
Runtime Error
0
0
95
H,W = map(int, input().split()) if H == 0 and W == 0: break print ((('#' * W) + '\n') * H)
File "/tmp/tmptfk0nl7w/tmpni3y9m3g.py", line 3 break ^^^^^ SyntaxError: 'break' outside loop
s241297815
p02403
u463783070
1459336008
Python
Python3
py
Runtime Error
0
0
135
while True: H,W = map(int, input().split()) if H == 0 and W == 0: break for i in range(H): print (('#' * W ) + \n)
File "/tmp/tmpdtn3kvnj/tmpgyxxffhp.py", line 7 print (('#' * W ) + \n) ^ SyntaxError: unexpected character after line continuation character
s342076861
p02403
u514745787
1469601939
Python
Python3
py
Runtime Error
0
0
208
while True: H, W = [int(i) for i in input().split()] for h in range(h): if H == W == 0: break for w in range(w): print('#', end=' ') print() print()
File "/tmp/tmplbioovuw/tmpy1ppjcvu.py", line 4 if H == W == 0: ^ IndentationError: expected an indented block after 'for' statement on line 3
s601282461
p02403
u085472528
1469601941
Python
Python3
py
Runtime Error
0
0
209
while True: H, W =[int(i) for i in input().split()] if H == w == 0: break for h in range(h): for w in range(w): print('w', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpoyhysowo/tmp952ex52k.py", line 2, in <module> H, W =[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s105451256
p02403
u085472528
1469601956
Python
Python3
py
Runtime Error
0
0
209
while True: H, W =[int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('w', end='') print() print()
Traceback (most recent call last): File "/tmp/tmphksex295/tmpw8t4gx3_.py", line 2, in <module> H, W =[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s662143565
p02403
u514745787
1469601958
Python
Python3
py
Runtime Error
0
0
205
while True: H, W = [int(i) for i in input().split()] for h in range(h): if H == W == 0: break for w in range(w): print('#', end=' ') print() print()
File "/tmp/tmp8ddc050e/tmpmv9anua6.py", line 4 if H == W == 0: ^ IndentationError: expected an indented block after 'for' statement on line 3
s916220847
p02403
u644636020
1469601958
Python
Python3
py
Runtime Error
0
0
232
while True: H, W = [int(i) for i in input().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end=('')) print() print()
Traceback (most recent call last): File "/tmp/tmp9nk7y6ix/tmpghkcgr6a.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s322648122
p02403
u204883389
1469601974
Python
Python3
py
Runtime Error
0
0
210
while True: H, W = [int(i) for i in input().sprit()] if H == W == 0: break for h in range(H): for w in range(W): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmp2pkqr_wh/tmphcol49ja.py", line 2, in <module> H, W = [int(i) for i in input().sprit()] ^^^^^^^ EOFError: EOF when reading a line
s308449004
p02403
u264632995
1469601978
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 h in range(h): for w in range(w): print('#', end='') print() print()
File "/tmp/tmphy67ciwc/tmp0m3qphqt.py", line 2 H,w = [int(i) for i in input().split() ^ SyntaxError: '[' was never closed
s112227876
p02403
u644636020
1469601991
Python
Python3
py
Runtime Error
0
0
230
while True: H, W = [int(i) for i in input().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpdgkvqwju/tmp83kyqkg4.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s900029252
p02403
u661284763
1469602009
Python
Python3
py
Runtime Error
0
0
245
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for i in range(H): for w in range(W): print('#',end='') print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpy2hmr28j/tmpyd2z8yxe.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s941324655
p02403
u435917115
1469602013
Python
Python3
py
Runtime Error
0
0
207
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmps7sfxx7f/tmpirukk0ep.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s770434861
p02403
u382316013
1469602022
Python
Python3
py
Runtime Error
0
0
167
while True: H, W = [int(i) for i in input().split()] for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmp7s6sk7d_/tmpfz4eh78n.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s154810629
p02403
u661284763
1469602031
Python
Python3
py
Runtime Error
0
0
245
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('#',end='') print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpml8k3snk/tmp_oa2cyg_.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s141115600
p02403
u435917115
1469602047
Python
Python3
py
Runtime Error
0
0
207
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmprslw05e0/tmp2jm77n8l.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s227635187
p02403
u435917115
1469602055
Python
Python3
py
Runtime Error
0
0
207
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpa2hj1jtw/tmpm9hhx9h7.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s657309403
p02403
u661284763
1469602076
Python
Python3
py
Runtime Error
0
0
225
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('#',end='') print() print()
Traceback (most recent call last): File "/tmp/tmp5jko4gww/tmpqzn85s8c.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s521215669
p02403
u435917115
1469602122
Python
Python3
py
Runtime Error
0
0
207
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpedbcxrhw/tmp2euyh84z.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s813433305
p02403
u264632995
1469602167
Python
Python3
py
Runtime Error
0
0
198
while True: H,W = [int(i) for i in input().split() if H == W ==0: break for h in range(h): for w in range(w): print('#', end='') print() print()
File "/tmp/tmprfokg1af/tmpvf7fwwy0.py", line 2 H,W = [int(i) for i in input().split() ^ SyntaxError: '[' was never closed
s756989591
p02403
u435917115
1469602172
Python
Python3
py
Runtime Error
0
0
207
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmp475b1f_t/tmpq9flszja.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s151762826
p02403
u661284763
1469602197
Python
Python3
py
Runtime Error
0
0
217
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('#',end='') print() print()
Traceback (most recent call last): File "/tmp/tmpmgsyhwgk/tmp3uz2dsui.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s225012872
p02403
u661284763
1469602207
Python
Python3
py
Runtime Error
0
0
208
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('#',end='') print() print()
Traceback (most recent call last): File "/tmp/tmpy2lgh_rw/tmphuvc89nk.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s987198106
p02403
u661284763
1469602251
Python
Python3
py
Runtime Error
0
0
209
while True: H, W = [int(i) for i in input().split()] if H == w == 0: break for h in range(H): for w in range(W): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpk9fquxcp/tmpq_d6saq8.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s552300376
p02403
u435917115
1469602292
Python
Python3
py
Runtime Error
0
0
203
while True: H, W = [int(i) for i in input ().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpa02nichp/tmpvnq26hpq.py", line 2, in <module> H, W = [int(i) for i in input ().split()] ^^^^^^^^ EOFError: EOF when reading a line
s122430336
p02403
u435917115
1469602356
Python
Python3
py
Runtime Error
0
0
202
while True: H, W = [int(i) for i in input().split()] if H == W == 0: break for h in range(h): for w in range(w): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmp5q8naktt/tmpzq87txv1.py", line 2, in <module> H, W = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s215347458
p02403
u435917115
1469603342
Python
Python3
py
Runtime Error
0
0
305
while True: H, W = [int(i) for i in input().split()] if H == W == 0: break for h in range(H): for w in range(W): if h == 0 or h == H - 1 or w == 0 or w == W - 1: print('#', end='') else: print('.', end='') print() print()
File "/tmp/tmpn9k14v45/tmphmzdo0b0.py", line 8 if h == 0 or h == H - 1 or w == 0 or w == W - 1: ^ IndentationError: expected an indented block after 'for' statement on line 7
s940421243
p02403
u435917115
1469603396
Python
Python3
py
Runtime Error
0
0
304
while True: H, W = [int(i) for i in input().split()] if H == W == 0: break for h in range(H): for w in range(W): if h == 0 or h == H - 1 or w == 0 or w == W - 1: print('#', end='') else: print('.', end='') print() print()
File "/tmp/tmp7dsxzded/tmp3kbe_k37.py", line 8 if h == 0 or h == H - 1 or w == 0 or w == W - 1: ^ IndentationError: expected an indented block after 'for' statement on line 7
s338765186
p02403
u494314211
1475913123
Python
Python3
py
Runtime Error
0
0
348
InputData=[] while True: H,W = map(int,raw_input().split()) # Python3 if W==0 and H==0 : break if (H-3)*(H-100)> 0 : continue if (W-3)*(W-100)> 0 : continue InputData.append([H,W]) for i in range(len(InputData)): H,W = InputData[i] print("#" * W) print(("#"+"#"*(W-2)+"#"+"\n")*(H-2),end="") # Python...
Traceback (most recent call last): File "/tmp/tmp8dojjc_0/tmpdsqo6ir3.py", line 3, in <module> H,W = map(int,raw_input().split()) # Python3 ^^^^^^^^^ NameError: name 'raw_input' is not defined
s282330830
p02403
u494314211
1475913223
Python
Python3
py
Runtime Error
0
0
236
a = [] while True: l = list(input().split) if l == [0,0]: break a.append(l) for i in range(len(a)): H,W = a[i] print("#" * W) print(("#"+"#"*(W-2)+"#"+"\n")*(H-2),end="") # Python3 print("#" * W) print("")
Traceback (most recent call last): File "/tmp/tmpdjahd2uz/tmpp4zqwsc6.py", line 3, in <module> l = list(input().split) ^^^^^^^ EOFError: EOF when reading a line
s618649706
p02403
u494314211
1475913267
Python
Python3
py
Runtime Error
0
0
230
a = [] while True: l = input().split if l == [0,0]: break a.append(l) for i in range(len(a)): H,W = a[i] print("#" * W) print(("#"+"#"*(W-2)+"#"+"\n")*(H-2),end="") # Python3 print("#" * W) print("")
Traceback (most recent call last): File "/tmp/tmpmqoc7phz/tmpp4293301.py", line 3, in <module> l = input().split ^^^^^^^ EOFError: EOF when reading a line
s672292313
p02403
u996758922
1477105546
Python
Python
py
Runtime Error
0
0
272
import sys while True: ins = input().split() h = int(ins[0]) w = int(ins[1]) if h == 0 and w == 0: break for i in range(h): for j in range(w-1): sys.stdout.write("#") print("#") print("")
Traceback (most recent call last): File "/tmp/tmpsxabmoon/tmposwqvo8a.py", line 5, in <module> ins = input().split() ^^^^^^^ EOFError: EOF when reading a line
s112971546
p02403
u831244171
1477496543
Python
Python
py
Runtime Error
0
0
146
while True: x = input().split() H = x[0] W = x[1] if H == 0 and W == 0: break for i in range(0,H): print "#"*W
File "/tmp/tmpe6rjk5q3/tmp41dgewlo.py", line 8 print "#"*W ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s253212112
p02403
u831244171
1477496586
Python
Python
py
Runtime Error
0
0
159
while True: x = input().split() H = x[0] W = x[1] if H == 0 and W == 0: break for i in range(0,H): print "#"*W print ""
File "/tmp/tmpd4d1pu5l/tmp8th93gl6.py", line 8 print "#"*W ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s304834733
p02403
u236295012
1477735028
Python
Python3
py
Runtime Error
0
0
154
while True: x = input().split() x_int = [int(i) for i in x] for i in range(x_int[0]): z = '#' * x_int[1] print(z) print()
Traceback (most recent call last): File "/tmp/tmp746p8tav/tmpoika_rr6.py", line 2, in <module> x = input().split() ^^^^^^^ EOFError: EOF when reading a line
s484335152
p02403
u941509088
1478287070
Python
Python3
py
Runtime Error
0
0
231
while True: H = int(input()) W = int(input()) if H == 0 and W == 0: break else: for i in range(H): print("") for j in range(W): print("#",end="") print("")
Traceback (most recent call last): File "/tmp/tmpb1h121g9/tmpu4vji80l.py", line 2, in <module> H = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s350045400
p02403
u854978981
1479390078
Python
Python3
py
Runtime Error
0
0
189
while True: x = [int(z) for z in input().split(" ")] for h in range(0,x[0]): for w in range(0,x[1]): print("#", end="") print("\n", end="") print("")
Traceback (most recent call last): File "/tmp/tmp6_ya5pog/tmp0hfo4arj.py", line 2, in <module> x = [int(z) for z in input().split(" ")] ^^^^^^^ EOFError: EOF when reading a line
s884233610
p02403
u326248180
1481168368
Python
Python3
py
Runtime Error
0
0
134
while true: a, b = map(int, input().split()) if a == 0 and b == 0: break for i in range(a): print('#' * b) print()
Traceback (most recent call last): File "/tmp/tmpe_crh22x/tmpp7r1a06m.py", line 1, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
s890278759
p02403
u326248180
1481168389
Python
Python3
py
Runtime Error
0
0
146
while true: a, b = map(int, input().split()) if a == 0 and b == 0: break for i in range(a): print('#' * b) print()
Traceback (most recent call last): File "/tmp/tmpqvdugivq/tmpsgz633is.py", line 1, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
s364351653
p02403
u732614538
1481653973
Python
Python3
py
Runtime Error
0
0
142
while True: y,x = [int(i) for i in input().split()] if y,x == 0: break for i in range(y): print('#'*x) print()
File "/tmp/tmpq9pd5p3k/tmpco67jw71.py", line 3 if y,x == 0: ^ SyntaxError: invalid syntax
s437208564
p02403
u732614538
1481653993
Python
Python3
py
Runtime Error
0
0
146
while True: y,x = [int(i) for i in input().split()] if y and x == 0: break for i in range(y): print('#'*x) print()
Traceback (most recent call last): File "/tmp/tmpgyqgtp79/tmpy3s_tvqx.py", line 2, in <module> y,x = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s520168414
p02403
u106285852
1482595123
Python
Python3
py
Runtime Error
0
0
832
''' ITP-1_5-A ????????¢????????? ??????H cm ?????? W cm ???????????¢?????????????????°????????????????????????????????? 1 cm ?? 1cm ???????????¢??? '#'??§??¨???????????? ???Input ??\???????????°????????????????????????????§???????????????????????????????????????????????????¢????????\????????¨????????§?????? H W H, W ?...
File "/tmp/tmpytsovhwd/tmp65tfz5rr.py", line 21 if H == 0 and W == 0 ^ SyntaxError: expected ':'
s592788122
p02403
u144068724
1485875562
Python
Python3
py
Runtime Error
0
0
158
while 1: H,W = map(int,input().split()) if H == 0 or W == 0: break else: x = ["#"] * W for i in(H+1): print(x)
Traceback (most recent call last): File "/tmp/tmpv54phwa8/tmpm7m8gt7u.py", line 2, in <module> H,W = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s551644553
p02403
u548155360
1487217779
Python
Python3
py
Runtime Error
0
0
153
While True: H,W = map(int,input().split()) if H ==0 and W == 0: break for i in (range H): for j in (range W): print("#", end="") print("")
File "/tmp/tmpzn93yvho/tmpe6cr3wqh.py", line 2 While True: ^^^^ SyntaxError: invalid syntax
s411167706
p02403
u024715419
1488183795
Python
Python3
py
Runtime Error
0
0
143
while True: h,w = map(int,input().split()) if h == 0 and w == 0: break for i in range(h) print("#" * w) print()
File "/tmp/tmpa_c9rl9z/tmp5mrj4c7g.py", line 5 for i in range(h) ^ SyntaxError: expected ':'
s646334776
p02403
u024715419
1488183803
Python
Python3
py
Runtime Error
0
0
145
while True: h,w = map(int,input().split()) if h == 0 and w == 0: break for i in range(h) print("#" * w) print("")
File "/tmp/tmpdx3ha_o2/tmp7ae3ilcp.py", line 5 for i in range(h) ^ SyntaxError: expected ':'
s691968173
p02403
u024715419
1488183884
Python
Python3
py
Runtime Error
0
0
141
while True: h,w = map(int,input().split()) if h == 0 and w == 0: break for i in range(h) print("#"*w) print()
File "/tmp/tmp1nnq0tlr/tmpvbho4dms.py", line 5 for i in range(h) ^ SyntaxError: expected ':'
s457781825
p02403
u024715419
1488183893
Python
Python3
py
Runtime Error
0
0
139
while True: h,w = map(int,input().split()) if h == 0 and w == 0: break for i in range(h) print("#") print()
File "/tmp/tmp05hv01jc/tmpdpma5l5f.py", line 5 for i in range(h) ^ SyntaxError: expected ':'
s422721603
p02403
u024715419
1488183917
Python
Python3
py
Runtime Error
0
0
131
while True: h,w = map(int,input().split()) if h == 0 and w == 0: break for i in range(h) print("#" * w)
File "/tmp/tmpw364x3og/tmpmqw1l69v.py", line 5 for i in range(h) ^ SyntaxError: expected ':'
s521397624
p02403
u024715419
1488183940
Python
Python3
py
Runtime Error
0
0
46
while True: h,w = map(int,input().split())
Traceback (most recent call last): File "/tmp/tmpw0z82r27/tmpa04c328q.py", line 2, in <module> h,w = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s582170050
p02403
u130834228
1488953685
Python
Python3
py
Runtime Error
0
0
164
while(1): H, W = map(int, input().split()) if H == 0 and W == 0: break for i in range(H): for j in range(W): print("#", end='') if j == W-1 print("")
File "/tmp/tmpj55578ip/tmp_0x72kd8.py", line 8 if j == W-1 ^ SyntaxError: expected ':'
s392201617
p02403
u130834228
1488953796
Python
Python3
py
Runtime Error
0
0
183
while(1): H, W = map(int, input().split()) if H == 0 and W == 0: break for i in range(H): for j in range(W): print("#", end='') if j == W-1 and if i != H-1: print("")
File "/tmp/tmp1jbzl581/tmpa4naff5t.py", line 8 if j == W-1 and if i != H-1: ^^ SyntaxError: invalid syntax
s807181211
p02403
u130834228
1488953903
Python
Python3
py
Runtime Error
0
0
166
while(1): H, W = map(int, input().split()) if H == 0 and W == 0: break for i in range(H): for j in range(W): print("#", end='') if j == W-1 print("")
File "/tmp/tmpoy9r8t5y/tmplbvmxl4u.py", line 8 if j == W-1 ^ SyntaxError: expected ':'
s242934233
p02403
u385274266
1490348750
Python
Python
py
Runtime Error
0
0
280
while True: 2 x,y = map(int,raw_input().split()) 3 if x==0: 4 break 5 else: 6 for i in xrange(x): 7 for j in xrange(y): 8 print "#", 9 print "" 10 print ""
File "/tmp/tmpx51zkks8/tmp7zvfsyfb.py", line 2 2 x,y = map(int,raw_input().split()) ^ SyntaxError: invalid syntax
s660493049
p02403
u957680575
1492492368
Python
Python3
py
Runtime Error
0
0
217
while True: H,W= map(int, input().split()) s = "#" for i in range(H): if H==0 and W==0: break else: x = s*W print(x) print("")
Traceback (most recent call last): File "/tmp/tmp_hj01b1q/tmp5ge0tlfe.py", line 2, in <module> H,W= map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s334567479
p02403
u957680575
1493175256
Python
Python3
py
Runtime Error
0
0
209
while True: H,W= map(int, input().split()) s = "#" for i in range(H): if H==0 and W==0: break else: x = s*W print(x) print("")
Traceback (most recent call last): File "/tmp/tmpiugb4jd3/tmpb3b5ve5i.py", line 2, in <module> H,W= map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s220525626
p02403
u650790815
1495681506
Python
Python3
py
Runtime Error
0
0
57
H,W = map(int,input8).split()) print(('#' * W + '\n')*H)
File "/tmp/tmphxcgrkci/tmp5yplx9f7.py", line 1 H,W = map(int,input8).split()) ^ SyntaxError: unmatched ')'
s791439759
p02403
u650790815
1495681712
Python
Python3
py
Runtime Error
0
0
128
import sys while 1: H,W = sys.stdin.readline().split() if H == 0 and W == 0: break print(('#' * W + '\n')*H)
Traceback (most recent call last): File "/tmp/tmpsp7g8_0t/tmp1qmd9ye5.py", line 3, in <module> H,W = sys.stdin.readline().split() ^^^ ValueError: not enough values to unpack (expected 2, got 0)
s875123175
p02403
u650790815
1495681823
Python
Python3
py
Runtime Error
0
0
127
import sys while 1 H,W = sys.stdin.readline().split() if H == 0 and W == 0: break print(('#' * W + '\n')*H)
File "/tmp/tmpj785qc_x/tmpybq7poii.py", line 2 while 1 ^ SyntaxError: expected ':'
s280517924
p02403
u650790815
1495681950
Python
Python3
py
Runtime Error
0
0
95
import sys while 1: H,W = map(int,sys.stdin.readline().split()) print(('#'*W + '\n')*H)
Traceback (most recent call last): File "/tmp/tmp9xwo1jui/tmp8wtzp8bm.py", line 3, in <module> H,W = map(int,sys.stdin.readline().split()) ^^^ ValueError: not enough values to unpack (expected 2, got 0)
s672804119
p02403
u623827446
1498642011
Python
Python3
py
Runtime Error
0
0
144
while True: H,M=map(int,input().split()) if H == 0 and M == 0: break else: for i in range(H): ??? print('#'*M) ???print('')
File "/tmp/tmpzuld2o7g/tmpk3_mo_r8.py", line 7 ??? print('#'*M) IndentationError: expected an indented block after 'for' statement on line 6
s943502578
p02403
u569585396
1499914072
Python
Python3
py
Runtime Error
0
0
115
num = input() tate = int(num) side = int(num) for i in tate: for j in side: print("#") j += 1 i += 1
Traceback (most recent call last): File "/tmp/tmpmziazm9a/tmpflez36qm.py", line 1, in <module> num = input() ^^^^^^^ EOFError: EOF when reading a line
s480030472
p02403
u663910047
1500129700
Python
Python
py
Runtime Error
0
0
267
x=1 y=1 list=[] while x>0: if x ==0 and y == 0: break x,y = map(int,input().split()) list.append([x,y]) L="" for i in list: for h in range(i[0]): for w in range(i[1]): L += "#" print (L) L = "" print ()
Traceback (most recent call last): File "/tmp/tmppy855396/tmpfqfskw1t.py", line 7, in <module> x,y = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s197411099
p02403
u663910047
1500129793
Python
Python
py
Runtime Error
0
0
267
x=1 y=1 list=[] while x>0: if x ==0 and y == 0: break x,y = map(int,input().split()) list.append([x,y]) L="" for i in list: for h in range(i[0]): for w in range(i[1]): L += "#" print (L) L = "" print ()
Traceback (most recent call last): File "/tmp/tmpyzfq6agh/tmpfldakp8x.py", line 7, in <module> x,y = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s358954675
p02403
u853619096
1500380994
Python
Python3
py
Runtime Error
0
0
106
a,b=input().split() h=int(a) w=int(b) if h ==0 and w==0: break for i in range(h): print("#"*w)
File "/tmp/tmppaimuwrl/tmpfjt67yq_.py", line 5 break ^^^^^ SyntaxError: 'break' outside loop
s491335145
p02403
u498511622
1500455679
Python
Python3
py
Runtime Error
0
0
122
while True: H,W = map(int,input().split()) if H==0 and W==0: break for s in range(H): print('#'*W) print()
File "/tmp/tmp8vexwjn5/tmpxudbfbwo.py", line 7 print() IndentationError: unexpected indent
s331509669
p02403
u853619096
1502520336
Python
Python3
py
Runtime Error
0
0
138
while True: a,b=map(int,input().split()) if a==0 and b==0: breal for i in range(a): print("#"*b) print("")
Traceback (most recent call last): File "/tmp/tmpbmb8d1yq/tmp32q5cr5w.py", line 2, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s879672877
p02403
u659034691
1502690937
Python
Python3
py
Runtime Error
0
0
341
our code goes here #15rectangle H,W=(int(i) for i in input().split()) while H!=0 or W!=0: for i in range(H-1): S="" for j in range(W): S+="#" print(S) S="" for j in range(W): S+="#" print(S, end="") H,W=(int(i) for i in input().split()) if H!=0 or W!=0...
File "/tmp/tmpbg24naay/tmpw9tx0tfj.py", line 1 our code goes here ^^^^ SyntaxError: invalid syntax
s968718073
p02403
u659034691
1502691583
Python
Python3
py
Runtime Error
0
0
313
#15rectangle H,W=(int(i) for i in input().split()) while H!=0 or W!=0: for i in range(H-1): S="" for j in range(W): S+="#" print(S) for j in range(W): S+="#" print(S, end=??????) H,W=(int(i) for i in input().split()) if H!=0 or W!=0: print("\n")
File "/tmp/tmpxpyygsrf/tmpr0o_vi7n.py", line 8 print(S) ^ IndentationError: unindent does not match any outer indentation level
s720261626
p02403
u659034691
1502691839
Python
Python3
py
Runtime Error
0
0
317
#15rectangle H,W=(int(i) for i in input().split()) while H!=0 or W!=0: for i in range(H-1): S="" for j in range(W): S+="#" print(S) for j in range(W): S+="#" print(S, end=??????) H,W=(int(i) for i in input().split()) if H!=0 or W!=0: print("\n")
File "/tmp/tmpb2pt5bgg/tmp4uzdg7qu.py", line 11 print(S, end=??????) ^ SyntaxError: invalid syntax
s668938528
p02403
u659034691
1502691880
Python
Python3
py
Runtime Error
0
0
313
#15rectangle H,W=(int(i) for i in input().split()) while H!=0 or W!=0: for i in range(H-1): S="" for j in range(W): S+="#" print(S) for j in range(W): S+="#" print(S, end="") H,W=(int(i) for i in input().split()) if H!=0 or W!=0: print("\n")
Traceback (most recent call last): File "/tmp/tmpbp7itg1c/tmpxl4284_3.py", line 2, in <module> H,W=(int(i) for i in input().split()) ^^^^^^^ EOFError: EOF when reading a line
s241925016
p02403
u283452598
1503046886
Python
Python3
py
Runtime Error
0
0
138
while True: W,H = tuple(map(int,input().split())) if W==0 & H==0: break for i in range(W): print("#"*H) |
File "/tmp/tmpmles39ny/tmph7_xkxtz.py", line 8 | ^ SyntaxError: invalid syntax
s473531296
p02403
u316697096
1503206127
Python
Python
py
Runtime Error
0
0
109
H,W=map(int,raw_input().split()) while 1: if H==0 and W==0: break for i in H print "#"*W print "/n"
File "/tmp/tmppnrfc0xi/tmpeyw9ywaw.py", line 6 for i in H ^ SyntaxError: expected ':'
s447647620
p02403
u316697096
1503206345
Python
Python
py
Runtime Error
0
0
110
while 1: H,W=map(int,raw_input().split()) if H==0 and W==0: break for i in H: print "#"*W print "/n"
File "/tmp/tmpecjk6w5o/tmpkr_l1d5b.py", line 6 print "#"*W ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s768795343
p02403
u316697096
1503206352
Python
Python
py
Runtime Error
0
0
109
while 1: H,W=map(int,raw_input().split()) if H==0 and W==0: break for i in H: print "#"*W print "/n"
File "/tmp/tmp2bzc9aq2/tmpgkgvlaqz.py", line 6 print "#"*W ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s848241001
p02403
u727538672
1504690130
Python
Python3
py
Runtime Error
0
0
542
for input in input().split('\n') H, W = map(int, input.split()) if H == 0 | W == 0: break countW, countH = 0, 0 while True: if countH == H: break while True: if countW == W: ...
File "/tmp/tmpsvy4lin7/tmpx3kijfdb.py", line 1 for input in input().split('\n') ^ SyntaxError: expected ':'
s445001917
p02403
u727538672
1504690224
Python
Python3
py
Runtime Error
0
0
541
while True: H, W = map(int, input().split()) if H == 0 | W == 0: break countW, countH = 0, 0 while True: if countH == H: break while True: if countW == W: pr...
File "/tmp/tmpg4kwc7sf/tmppr9hs21r.py", line 21 print() ^ IndentationError: unindent does not match any outer indentation level
s845886822
p02403
u933096856
1505006338
Python
Python3
py
Runtime Error
0
0
142
While True: h,w=map(int, input().split()) if h == 0 and w == 0: quit() for i in range(h): print('#'*w) print()
File "/tmp/tmpna8ii2t9/tmpx5qeo8dc.py", line 1 While True: ^^^^ SyntaxError: invalid syntax
s588980161
p02403
u933096856
1505006546
Python
Python3
py
Runtime Error
0
0
144
while True: h,w=map(int, input().split()) if h == 0 and w == 0: quit() for i in range(h): print('#'*w) print(\n)
File "/tmp/tmp9g7616a3/tmpy_wwshyq.py", line 7 print(\n) ^ SyntaxError: unexpected character after line continuation character
s077429548
p02403
u362494298
1505265527
Python
Python3
py
Runtime Error
0
0
108
while True: h,w=map(int,input().split()) if h+w==0:break for x in range(1,h+1): print("#"*w)
File "/tmp/tmppezb9yrm/tmplwt54d41.py", line 5 print("#"*w) ^ IndentationError: expected an indented block after 'for' statement on line 4
s280738711
p02403
u362494298
1505265741
Python
Python3
py
Runtime Error
0
0
121
while True: h,w=map(int,input().split()) if h+w==0:break for x in range(1,h+1): print("#"*w) print( )
File "/tmp/tmpjdu90p9o/tmpq8no9bi0.py", line 5 print("#"*w) ^ IndentationError: expected an indented block after 'for' statement on line 4
s021634930
p02403
u602702913
1505466655
Python
Python3
py
Runtime Error
0
0
103
W,H=map(int,input().split()) if H==M==0: break else: for i in range(0,H): print("#"*W)
File "/tmp/tmpxxeabe2a/tmp3inuekca.py", line 4 break ^^^^^ SyntaxError: 'break' outside loop
s077352190
p02403
u186282999
1506163462
Python
Python3
py
Runtime Error
0
0
1319
# # my_value_list = [] # # while True: # try: # my_value_list.append(input().split()) # except EOFError: # break # # for i in range(0, len(my_value_list)): # if my_value_list[i][1] == "+": # print(int(my_value_list[i][0]) + int(my_value_list[i][2])) # elif my_value_list[i][1] == ...
s140848825
p02403
u936401118
1506908924
Python
Python3
py
Runtime Error
0
0
146
while True: H, W = map(int, input().split()) if W == 0 and H == 0: break for i in range(H): print ('#' * W) print()
File "/tmp/tmpd_xofrko/tmp5c2ntdlp.py", line 5 for i in range(H): ^ IndentationError: unindent does not match any outer indentation level
s773642301
p02403
u480053997
1507016469
Python
Python3
py
Runtime Error
0
0
126
hile True: H, W = map(int, input().split()) if H == 0 and W == 0: break print(('#' * W +'\n') * H + '\n')
File "/tmp/tmp8ms3smgo/tmp7_sjr2i0.py", line 1 hile True: ^^^^ SyntaxError: invalid syntax
s130878534
p02403
u505411588
1508835628
Python
Python3
py
Runtime Error
0
0
130
def makerctg(H,W): for num in range(H): print("#" * W ) print() H W = map(int, input().split()) makerctg(H,W)
File "/tmp/tmpuyfl0oxz/tmpvz2x70fm.py", line 6 H W = map(int, input().split()) ^ SyntaxError: invalid syntax
s221109384
p02403
u043968625
1509544581
Python
Python3
py
Runtime Error
0
0
107
flag=0 while flag==0: a,b=[int(i) for i in input().split()] for i in range(a): print("#"*b)
Traceback (most recent call last): File "/tmp/tmp6p1dgqd7/tmpdxgj7z1b.py", line 3, in <module> a,b=[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s427628084
p02403
u043968625
1509544649
Python
Python3
py
Runtime Error
0
0
166
flag=0 while flag==0: a,b=[int(i) for i in input().split()] if a=0,b=0: flag=1 break else: for i in range(a): print("#"*b)
File "/tmp/tmp9sssyhs6/tmp0lu1h6y9.py", line 4 if a=0,b=0: ^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?