結果

問題 No.152 貯金箱の消失
ユーザー nebukuro09nebukuro09
提出日時 2016-10-31 01:54:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-05-03 19:58:49
合計ジャッジ時間 3,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
80,640 KB
testcase_01 AC 129 ms
81,052 KB
testcase_02 AC 121 ms
81,152 KB
testcase_03 AC 122 ms
80,768 KB
testcase_04 AC 137 ms
81,536 KB
testcase_05 AC 128 ms
81,440 KB
testcase_06 AC 132 ms
81,448 KB
testcase_07 AC 152 ms
81,708 KB
testcase_08 AC 227 ms
81,440 KB
testcase_09 AC 230 ms
81,920 KB
testcase_10 AC 215 ms
81,536 KB
testcase_11 AC 174 ms
81,664 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