結果

問題 No.152 貯金箱の消失
ユーザー rlangevinrlangevin
提出日時 2023-05-09 08:57:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 115,572 KB
最終ジャッジ日時 2024-05-04 10:54:04
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,624 KB
testcase_01 AC 50 ms
60,160 KB
testcase_02 AC 47 ms
58,496 KB
testcase_03 AC 49 ms
59,520 KB
testcase_04 AC 62 ms
67,072 KB
testcase_05 AC 62 ms
67,072 KB
testcase_06 AC 69 ms
71,168 KB
testcase_07 AC 124 ms
80,000 KB
testcase_08 AC 487 ms
113,528 KB
testcase_09 AC 502 ms
115,572 KB
testcase_10 AC 390 ms
104,188 KB
testcase_11 AC 233 ms
89,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

L = int(input())
S = set()
mod = 1000003
for m in range(10**4):
    for n in range(1, m):
        if 8 * m * (m + n) > L:
            break
        D = [m**2 - n**2, 2 * m * n, m**2 + n**2]
        g = gcd(D[0], gcd(D[1], D[2]))
        D.sort()
        for k in range(3):
            D[k] //= g
        S.add(tuple(D))
        
print(len(S)%mod)
0