結果

問題 No.2979 直角三角形の個数
ユーザー amesyuamesyu
提出日時 2024-12-03 12:54:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 323 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-12-03 12:54:25
合計ジャッジ時間 3,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 39 ms
52,864 KB
testcase_06 AC 47 ms
60,544 KB
testcase_07 AC 43 ms
59,648 KB
testcase_08 AC 49 ms
61,696 KB
testcase_09 AC 45 ms
60,288 KB
testcase_10 AC 65 ms
61,056 KB
testcase_11 AC 49 ms
61,568 KB
testcase_12 AC 144 ms
64,000 KB
testcase_13 AC 93 ms
63,616 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 AC 35 ms
52,480 KB
testcase_27 AC 316 ms
64,384 KB
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
assert n <= 10**7
ans = 0
sqrt = int(n ** .5) + 1
for b in range(1, sqrt):
    for a in range(b + 1, sqrt):
        p = a**2 + b**2
        if p%4 != 1: continue
        if math.gcd(a, b) != 1: continue
        q = a**2 - b**2
        r = 2 * a * b
        ans += n // (p + q + r)

print(ans)
0