結果

問題 No.152 貯金箱の消失
ユーザー gigurururugigurururu
提出日時 2015-02-18 20:03:13
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 81,708 KB
最終ジャッジ日時 2024-06-23 21:05:54
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
80,632 KB
testcase_01 AC 141 ms
81,188 KB
testcase_02 AC 141 ms
81,288 KB
testcase_03 AC 141 ms
80,808 KB
testcase_04 AC 149 ms
81,452 KB
testcase_05 AC 151 ms
81,416 KB
testcase_06 AC 151 ms
81,452 KB
testcase_07 AC 161 ms
81,444 KB
testcase_08 AC 219 ms
81,448 KB
testcase_09 AC 220 ms
81,708 KB
testcase_10 AC 205 ms
81,544 KB
testcase_11 AC 179 ms
81,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import fractions
l=input()/4
print sum(len([0 for n in range(1,min(m,l/m-m)+1,2)if fractions.gcd(m,n)<2]) for m in range(3,l,2))
0