結果

問題 No.152 貯金箱の消失
ユーザー nebukuro09nebukuro09
提出日時 2016-10-31 01:54:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 257 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 81,684 KB
最終ジャッジ日時 2024-11-24 23:53:27
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
80,556 KB
testcase_01 AC 141 ms
81,020 KB
testcase_02 AC 139 ms
81,016 KB
testcase_03 AC 137 ms
80,948 KB
testcase_04 AC 146 ms
81,180 KB
testcase_05 AC 145 ms
81,196 KB
testcase_06 AC 148 ms
81,432 KB
testcase_07 AC 163 ms
81,544 KB
testcase_08 AC 257 ms
81,596 KB
testcase_09 AC 257 ms
81,684 KB
testcase_10 AC 233 ms
81,316 KB
testcase_11 AC 194 ms
81,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from fractions import gcd
L = input()/4
R =  int(math.sqrt(L))+1
ans = 0

for n in xrange(1, R):
    for m in xrange(n+1, R, 2):
        if gcd(m, n) != 1:
            continue
        a, b, c = m*m-n*n, 2*m*n, m*m+n*n
        if a+b+c <= L:
            ans += 1
print ans
0