結果

問題 No.152 貯金箱の消失
ユーザー H3PO4H3PO4
提出日時 2020-05-06 23:16:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 836 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-03 09:13:23
合計ジャッジ時間 11,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 794 ms
10,752 KB
testcase_01 AC 815 ms
10,752 KB
testcase_02 AC 779 ms
10,880 KB
testcase_03 AC 771 ms
10,752 KB
testcase_04 AC 784 ms
10,752 KB
testcase_05 AC 797 ms
10,752 KB
testcase_06 AC 833 ms
10,752 KB
testcase_07 AC 797 ms
10,880 KB
testcase_08 AC 801 ms
10,752 KB
testcase_09 AC 824 ms
10,752 KB
testcase_10 AC 836 ms
10,752 KB
testcase_11 AC 793 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

L = int(input())
MOD = 1000003
ans = 0
for m in range(2, 2000):
    for n in range(m % 2 + 1, m, 2):
        if gcd(m, n) != 1:
            continue
        if (abs(m ** 2 - n ** 2) + 2 * m * n + m ** 2 + n ** 2) * 4 <= L:
            ans += 1
print(ans % MOD)
0