結果

問題 No.152 貯金箱の消失
ユーザー lloyzlloyz
提出日時 2023-06-16 00:32:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 115,624 KB
最終ジャッジ日時 2024-06-23 21:21:34
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,800 KB
testcase_01 AC 45 ms
60,552 KB
testcase_02 AC 40 ms
59,752 KB
testcase_03 AC 43 ms
59,348 KB
testcase_04 AC 52 ms
67,392 KB
testcase_05 AC 53 ms
67,964 KB
testcase_06 AC 56 ms
73,108 KB
testcase_07 AC 108 ms
80,268 KB
testcase_08 AC 453 ms
113,528 KB
testcase_09 AC 461 ms
115,624 KB
testcase_10 AC 357 ms
104,180 KB
testcase_11 AC 216 ms
89,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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