結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
10,752 KB
testcase_01 AC 178 ms
10,752 KB
testcase_02 AC 175 ms
10,752 KB
testcase_03 AC 175 ms
10,880 KB
testcase_04 AC 179 ms
10,752 KB
testcase_05 AC 178 ms
10,880 KB
testcase_06 AC 182 ms
10,752 KB
testcase_07 AC 230 ms
10,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 470 ms
10,752 KB
testcase_11 AC 335 ms
10,880 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)
0