結果

問題 No.152 貯金箱の消失
ユーザー roiti46roiti46
提出日時 2015-02-16 01:40:21
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 295 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 85,532 KB
最終ジャッジ日時 2024-06-23 20:38:59
合計ジャッジ時間 15,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
76,168 KB
testcase_01 AC 117 ms
78,844 KB
testcase_02 AC 74 ms
76,152 KB
testcase_03 AC 96 ms
78,608 KB
testcase_04 AC 3,998 ms
78,640 KB
testcase_05 AC 4,699 ms
78,592 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
    while b: a,b = b,a%b
    return a
    
N = int(raw_input())
ans = 0
for a in xrange(3,N/4/2+1):
    for b in xrange(2,a):
        c2 = a*a+b*b
        c = int(c2**0.5)
        if N-4*(a+b+c) < 0: break
        if c*c != c2: continue
        if gcd(a,b) == 1: ans += 1
print ans
0