結果

問題 No.152 貯金箱の消失
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-27 16:51:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 505 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 15:03:33
合計ジャッジ時間 2,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 41 ms
10,752 KB
testcase_07 AC 101 ms
10,752 KB
testcase_08 AC 485 ms
10,752 KB
testcase_09 AC 505 ms
10,752 KB
testcase_10 AC 378 ms
10,752 KB
testcase_11 AC 222 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd as g


def gcd(a, b, c):
    return g(a, g(b, c))


L = int(input())
if L < 48:
    print(0)
    exit()

L //= 4
ans = 0
for m in range(1, int(L ** 0.5) + 10):
    for n in range(1, m):
        if 2 * m * (m + n) > L:
            break
        a = m*m - n*n
        b = 2*m*n
        c = m*m - n*n
        if gcd(a, b, c) == 1:
            ans += 1


print(ans)
0