結果

問題 No.2797 Square Tile
ユーザー pitPpitP
提出日時 2024-06-28 23:38:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-06-28 23:38:44
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 113 ms
81,792 KB
testcase_05 AC 83 ms
81,024 KB
testcase_06 AC 72 ms
78,592 KB
testcase_07 WA -
testcase_08 AC 66 ms
71,424 KB
testcase_09 AC 70 ms
77,696 KB
testcase_10 AC 87 ms
79,104 KB
testcase_11 AC 69 ms
77,184 KB
testcase_12 AC 71 ms
77,440 KB
testcase_13 WA -
testcase_14 AC 85 ms
78,208 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 61 ms
71,424 KB
testcase_18 WA -
testcase_19 AC 70 ms
77,824 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 60 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
A, B = map(int, input().split())

g = gcd(A, B)
A //= g
B //= g

L = A ** 2 + B ** 2
ifSwap = 0
if A < B:
    A, B = B, A
    ifSwap = 1


xy = []
for i in range(L):
    i0 = A * i % L
    j0 = B * i % L
    xy.append([i0 * g % L, j0 * g % L])


for i in range(L):
    i0 = A * (i + 1) % L
    j0 = B * i % L
    xy.append([i0 * g % L, j0 * g % L])


for i in range(2 * L):
    if ifSwap:
        print(*xy[(i + L) % (2 * L)])
    else:
        print(*xy[i])
0