結果

問題 No.2797 Square Tile
ユーザー shotoyooshotoyoo
提出日時 2024-06-28 22:35:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,243 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 79,552 KB
最終ジャッジ日時 2024-06-28 22:35:23
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,656 KB
testcase_01 AC 36 ms
55,712 KB
testcase_02 AC 36 ms
54,332 KB
testcase_03 AC 37 ms
54,504 KB
testcase_04 AC 94 ms
79,552 KB
testcase_05 AC 91 ms
78,448 KB
testcase_06 AC 81 ms
77,720 KB
testcase_07 WA -
testcase_08 AC 72 ms
77,284 KB
testcase_09 AC 77 ms
77,604 KB
testcase_10 AC 80 ms
78,096 KB
testcase_11 AC 75 ms
77,512 KB
testcase_12 AC 80 ms
77,704 KB
testcase_13 WA -
testcase_14 AC 92 ms
77,800 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
77,308 KB
testcase_18 WA -
testcase_19 AC 76 ms
77,788 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 74 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda v=0: list(map(lambda i: int(i)-v, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

a,b = list(map(int, input().split()))
VV = a*a + b*b
f = 0
if a>b:
    a,b = b,a
    f = 1
assert a<=b
if a==b:
    xy = [(i,j) for i in range(0, a*a*2, a) for j in range(0, a*a*2, a)]
    for x,y in xy:
        print(x%VV,y%VV)
else:
    xy0 = []
    xy1 = []
    x = y = 0
    for i in range(a*a + b*b):
        xy0.append((x,y))
        x += b
        y += a
    x = b
    y = 0
    for i in range(a*a+b*b):
        xy1.append((x,y))
        x += b
        y += a
    if not f:
        xy0,xy1 = xy1,xy0
    for x,y in xy0:
        print(x%VV,y%VV)
    for x,y in xy1:
        print(x%VV,y%VV)
0