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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
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 |
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
} |
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) |
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 |
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 |
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 |
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", |
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 |
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])] |
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])] |
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]) |
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])] |
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]) |
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) |
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) |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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... |
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("") |
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("") |
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("") |
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 |
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 "" |
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() |
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("") |
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("") |
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() |
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() |
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() |
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() |
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 ?... |
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) |
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("") |
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() |
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("") |
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() |
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() |
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) |
s521397624 | p02403 | u024715419 | 1488183940 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | while True:
h,w = map(int,input().split()) |
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("") |
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("") |
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("") |
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 "" |
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("")
|
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("")
|
s220525626 | p02403 | u650790815 | 1495681506 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | H,W = map(int,input8).split())
print(('#' * W + '\n')*H) |
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) |
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) |
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) |
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('') |
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 |
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 () |
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 () |
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)
|
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() |
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("") |
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... |
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") |
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") |
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") |
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)
| |
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" |
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" |
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" |
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:
... |
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... |
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() |
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) |
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) |
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( ) |
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) |
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() |
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') |
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) |
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) |
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) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.