結果

問題 No.152 貯金箱の消失
ユーザー tkr182tkr182
提出日時 2020-01-01 23:45:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-02 06:03:06
合計ジャッジ時間 4,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
10,752 KB
testcase_01 AC 178 ms
10,880 KB
testcase_02 AC 174 ms
10,752 KB
testcase_03 AC 174 ms
10,752 KB
testcase_04 AC 179 ms
10,752 KB
testcase_05 AC 179 ms
10,752 KB
testcase_06 AC 192 ms
10,752 KB
testcase_07 AC 233 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 464 ms
10,752 KB
testcase_11 AC 343 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
l=int(input())
c=0
for i in range(1,10**3):
    for j in range(i+1,10**3+1):
        if 8*((j**2)+j*i)<=l and gcd(gcd(i**2+j**2,2*i*j),j**2-i**2)==1:
            c+=1
print(c%(10**6+3))
0