結果

問題 No.152 貯金箱の消失
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-16 00:36:29
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 20:37:07
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,812 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 24 ms
6,944 KB
testcase_05 AC 26 ms
6,944 KB
testcase_06 AC 36 ms
6,944 KB
testcase_07 AC 187 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 529 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
L=int(raw_input())
mod=100003
triLen=L/4

def gcd(a,b):
    if a > b:
        return gcd(b,a)
    if b%a==0:
        return a
    return gcd(b%a,a)

ans = 0
for n in range(1, int(math.sqrt(triLen))+1 ):
    for m in range(n+1, int(math.sqrt(triLen-n*n))+1 ):
        if gcd(m,n)==1 and (m-n)%2==1 and 2*m*m+2*m*n<=triLen:
            #print m*m+n*n,2*m*n,m*m-n*n
            ans+=1
print ans%mod
0