結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 106 ms
16,768 KB
testcase_05 AC 94 ms
15,616 KB
testcase_06 AC 72 ms
13,696 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 63 ms
13,312 KB
testcase_10 AC 83 ms
14,720 KB
testcase_11 AC 70 ms
12,544 KB
testcase_12 AC 60 ms
13,056 KB
testcase_13 AC 39 ms
11,392 KB
testcase_14 AC 66 ms
13,696 KB
testcase_15 AC 52 ms
12,288 KB
testcase_16 AC 45 ms
11,904 KB
testcase_17 AC 38 ms
11,392 KB
testcase_18 AC 36 ms
11,392 KB
testcase_19 AC 62 ms
13,312 KB
testcase_20 AC 58 ms
12,800 KB
testcase_21 AC 97 ms
14,848 KB
testcase_22 AC 38 ms
11,392 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