結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 107 ms
16,896 KB
testcase_05 AC 93 ms
15,744 KB
testcase_06 AC 67 ms
13,696 KB
testcase_07 WA -
testcase_08 AC 38 ms
11,392 KB
testcase_09 AC 65 ms
13,440 KB
testcase_10 AC 83 ms
14,720 KB
testcase_11 AC 55 ms
12,672 KB
testcase_12 AC 60 ms
13,184 KB
testcase_13 WA -
testcase_14 AC 64 ms
13,568 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 36 ms
11,392 KB
testcase_18 WA -
testcase_19 AC 63 ms
13,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
11,520 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)
            le=len(retu)
            retu0=retu[le//2:]
            retu1=retu[:le//2]
            retu=[]
            a,b=A//g,B//g
            l=a*a+b*b
            for x,y in retu0+retu1:
                for i in range(g):
                    for j in range(g):
                        retu.append(((x*g+i*l*g)%L,(y*g+j*l*g)%L))
        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