結果

問題 No.2797 Square Tile
ユーザー detteiuudetteiuu
提出日時 2024-06-28 23:12:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,196 KB
最終ジャッジ日時 2024-06-28 23:13:01
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 35 ms
52,180 KB
testcase_02 WA -
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 79 ms
78,196 KB
testcase_05 AC 81 ms
77,636 KB
testcase_06 AC 78 ms
77,312 KB
testcase_07 WA -
testcase_08 AC 76 ms
76,544 KB
testcase_09 AC 77 ms
77,184 KB
testcase_10 AC 82 ms
77,212 KB
testcase_11 AC 87 ms
76,672 KB
testcase_12 AC 77 ms
77,104 KB
testcase_13 WA -
testcase_14 AC 87 ms
77,056 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 75 ms
76,664 KB
testcase_18 WA -
testcase_19 AC 78 ms
77,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 87 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())

L = A**2+B**2
tileA = []
tileB = []
if A >= B:
    for i in range(L):
        tileA.append((i*A%L, (i*B)%L))
    for i in range(L):
        tileB.append(((A+A*i)%L, (i*B)%L))
else:
    for i in range(L):
        tileB.append((i*B%L, (i*A)%L))
    for i in range(L):
        tileA.append(((B+B*i)%L, (i*A)%L))

for a in tileA:
    print(*a)
for b in tileB:
    print(*b)
0