結果

問題 No.2797 Square Tile
ユーザー hitonanodehitonanode
提出日時 2024-06-29 01:34:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 928 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-06-29 01:34:33
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
11,008 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 130 ms
20,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 80 ms
15,616 KB
testcase_10 WA -
testcase_11 AC 67 ms
14,592 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
11,776 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 41 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def solve(A: int, B: int):
    L = A * A + B * B

    retA: list[tuple[int, int]] = []
    retB: list[tuple[int, int]] = []

    for idx in range(L):
        if A > B:
            retA.append((B * idx % L, A * idx % L))
            retB.append((B * idx % L, A * (idx + 1) % L))
        else:
            retA.append((B * idx % L, A * (idx + 1) % L))
            retB.append((B * idx % L, A * idx % L))
    
    return retA, retB

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

G = math.gcd(A, B)
# print(A, B, G)

tmpA, tmpB = solve(A // G, B // G)

retA: list[tuple[int, int]] = []
retB: list[tuple[int, int]] = []

for x in range(G):
    for y in range(G):
        for a, b in tmpA:
            retA.append((a * G + x * A // G, b * G + y * B // G))
        for a, b in tmpB:
            retB.append((a * G + x * A // G, b * G + y * B // G))

for a, b in sorted(retA):
    print(a, b)
for a, b in sorted(retB):
    print(a, b)
0