結果

問題 No.152 貯金箱の消失
ユーザー matsu7874matsu7874
提出日時 2015-10-27 11:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 722 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 03:41:29
合計ジャッジ時間 3,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 39 ms
10,752 KB
testcase_05 AC 38 ms
10,624 KB
testcase_06 AC 45 ms
10,624 KB
testcase_07 AC 134 ms
10,880 KB
testcase_08 AC 722 ms
10,752 KB
testcase_09 AC 706 ms
10,752 KB
testcase_10 AC 565 ms
10,752 KB
testcase_11 AC 323 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    # 最小公倍数
    while b > 0:
        a, b = b, a % b
    return a

L = int(input())
L = L // 4
cnt = 0
for m in range(1, int(L**0.5)+1):
    for n in range(m - 1, 0, -2):
        if gcd(m,n) != 1:
            continue
        a = m * m - n * n
        b = 2 * m * n
        c = m * m + n * n
        if a+b+c <= L:
            cnt += 1
print(cnt)
0