結果

問題 No.152 貯金箱の消失
ユーザー 👑 rin204rin204
提出日時 2022-07-09 16:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 63,168 KB
最終ジャッジ日時 2024-06-09 23:08:32
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,764 KB
testcase_01 AC 38 ms
52,600 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 38 ms
52,524 KB
testcase_04 AC 45 ms
60,572 KB
testcase_05 AC 46 ms
60,620 KB
testcase_06 AC 47 ms
61,736 KB
testcase_07 AC 63 ms
63,064 KB
testcase_08 AC 144 ms
62,304 KB
testcase_09 AC 146 ms
62,688 KB
testcase_10 AC 123 ms
61,708 KB
testcase_11 AC 89 ms
63,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
l = int(input()) // 4

lst = []
m = 2
ans = 0
while 1:
    if 2 * m * (m + 1) >= l:
        break
    n = 1
    while n < m and 2 * m * (m + n) <= l:
        a, b, c = m * m - n * n, 2 * m * n, m * m + n * n
        if gcd(gcd(a, b), c) == 1:
            ans += 1
        n += 1
    m += 1
print(ans)
0