結果

問題 No.2797 Square Tile
ユーザー vwxyzvwxyz
提出日時 2024-06-28 23:19:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-06-28 23:19:34
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 WA -
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 107 ms
16,640 KB
testcase_05 AC 98 ms
15,488 KB
testcase_06 AC 69 ms
13,568 KB
testcase_07 WA -
testcase_08 AC 38 ms
11,136 KB
testcase_09 AC 87 ms
13,184 KB
testcase_10 AC 83 ms
14,592 KB
testcase_11 AC 56 ms
12,416 KB
testcase_12 AC 62 ms
12,928 KB
testcase_13 WA -
testcase_14 AC 67 ms
13,440 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
11,136 KB
testcase_18 WA -
testcase_19 AC 65 ms
13,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

A,B=map(int,input().split())
def solve(A,B):
    L=A*A+B*B
    if A<B:
        retu=solve(B,A)
        retu=retu[L:]+retu[:L]
    else:
        g=math.gcd(A,B)
        if g>=2:
            retu=solve(A//g,B//g)
            retu=[(x*g*g,y*g*g) for x,y in retu]
        else:
            retu=[]
            for x in range(L):
                retu.append((x*B%L,x*A%L))
            for x in range(L):
                retu.append(((x*B+A)%L,(x*A+A-B)%L))
    return retu
ans_lst=solve(A,B)
for x,y in ans_lst:
    print(x,y)
0