結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,244 KB
testcase_01 AC 36 ms
54,844 KB
testcase_02 AC 36 ms
55,568 KB
testcase_03 AC 36 ms
55,000 KB
testcase_04 AC 91 ms
79,960 KB
testcase_05 AC 101 ms
79,160 KB
testcase_06 AC 87 ms
77,956 KB
testcase_07 WA -
testcase_08 AC 84 ms
77,440 KB
testcase_09 AC 82 ms
77,964 KB
testcase_10 AC 84 ms
78,936 KB
testcase_11 AC 85 ms
77,704 KB
testcase_12 AC 89 ms
77,860 KB
testcase_13 WA -
testcase_14 AC 89 ms
77,872 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 77 ms
77,348 KB
testcase_18 WA -
testcase_19 AC 79 ms
78,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 82 ms
77,564 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])]
def sub(a,b):
    assert gcd(a,b)==1
    VV = a*a + b*b
    f = 0
    if a>b:
        a,b = b,a
        f = 1
    assert a<=b
    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
    return xy0, xy1
a,b = list(map(int, input().split()))
from math import gcd
if a==b:
    VV = a*a + b*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:
    VV = a*a+b*b
    g = gcd(a,b)
    xy0, xy1 = sub(a//g, b//g)
    res0 = []
    res1 = []
    tmp = (a//g)**2 + (b//g)**2
    for vx in range(g):
        for vy in range(g):
            for x,y in xy0:
                res0.append((x+g*vx, y+g*vy))
            for x,y in xy1:
                res1.append((x+g*vx, y+g*vy))
    xy0 = res0
    xy1 = res1
    for x,y in xy0:
        print(x%VV,y%VV)
    for x,y in xy1:
        print(x%VV,y%VV)
0