結果
問題 | No.152 貯金箱の消失 |
ユーザー | ktshun |
提出日時 | 2015-06-10 20:50:10 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 1,558 ms / 5,000 ms |
コード長 | 431 bytes |
コンパイル時間 | 35 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-07-06 15:25:10 |
合計ジャッジ時間 | 5,881 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,272 KB |
testcase_01 | AC | 10 ms
6,272 KB |
testcase_02 | AC | 9 ms
6,400 KB |
testcase_03 | AC | 10 ms
6,400 KB |
testcase_04 | AC | 24 ms
6,528 KB |
testcase_05 | AC | 27 ms
6,400 KB |
testcase_06 | AC | 42 ms
6,528 KB |
testcase_07 | AC | 229 ms
6,272 KB |
testcase_08 | AC | 1,526 ms
6,400 KB |
testcase_09 | AC | 1,558 ms
6,400 KB |
testcase_10 | AC | 1,202 ms
6,400 KB |
testcase_11 | AC | 665 ms
6,400 KB |
ソースコード
# -*- coding:utf-8 -*- import math def euclidean(n,m): while 1: if max(n,m) % min(n,m) == 0: return min(n,m) if n > m: n = n % m else: m = m % n if __name__ == "__main__": l = input() l = l / 4 ans = 0 for i in xrange(1,int(math.sqrt(l))): for j in xrange(1,i): if (i-j) % 2 != 1: continue elif euclidean(i,j) != 1: continue else: if 2 * i **2 + 2 * i * j <= l: ans += 1 print ans