s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
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)
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')
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')
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()
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()
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')
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')
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
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
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
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)
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"*#)
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("")
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("")
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("")
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; } ...
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; } ...
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; }...
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()
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; }
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()
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()
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()
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
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)
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")
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)
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")
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")
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()
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()
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;
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
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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)
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
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 ""
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" )
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
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
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
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
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)
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)
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)
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()
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)
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)
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)
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()
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('')
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(""
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 ""
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 ""
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
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
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
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
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
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
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
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
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
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
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")
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")
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
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
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
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
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
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
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
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
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'
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'
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'
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)
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)
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 ''
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 ""
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 ""
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*'#'
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 ""
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 ""
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 ""
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')
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)
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)