結果

問題 No.152 貯金箱の消失
ユーザー pluto77pluto77
提出日時 2016-03-13 09:17:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 76,304 KB
実行使用メモリ 78,140 KB
最終ジャッジ日時 2024-09-25 11:15:07
合計ジャッジ時間 3,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,172 KB
testcase_01 AC 71 ms
75,292 KB
testcase_02 AC 70 ms
75,396 KB
testcase_03 AC 70 ms
75,796 KB
testcase_04 AC 84 ms
77,884 KB
testcase_05 AC 80 ms
77,376 KB
testcase_06 AC 80 ms
77,868 KB
testcase_07 AC 89 ms
78,076 KB
testcase_08 AC 120 ms
77,980 KB
testcase_09 AC 120 ms
78,140 KB
testcase_10 AC 108 ms
77,828 KB
testcase_11 AC 94 ms
77,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
#yuki_152
import math

def gcd(a, b):
 while b:
  a, b = b, a % b
 return a

L=int(raw_input())
L=L/4
sq=int(math.sqrt(L))
count=0
for n in xrange(1,sq+1):
 for m in xrange(n+1,sq+1):
  if (m-n)%2==0 or gcd(m,n)!=1:
   continue
  if L>0:
   l=2*m*(m+n)
   if l>L:
    break
   count+=1

print count
0