結果
問題 | No.303 割れません |
ユーザー | anta |
提出日時 | 2015-11-14 01:26:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,740 KB |
最終ジャッジ日時 | 2024-09-13 16:39:48 |
合計ジャッジ時間 | 5,428 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
ソースコード
# ref: <http://ideone.com/398PRc> def fib(n): if n == 0: return (1, 0) a, b = fib(n // 2) aa, bb, abab = a ** 2, b ** 2, (a+b) ** 2 if n % 2 == 0: return (aa + bb, abab - aa) else: return (abab - aa, abab + bb) n = int(input()) if n == 2: print('3\nINF\n') else: if n % 2 == 1: ans = fib(n)[1] else: a, b = fib(n // 2) ans = a * b * 2 print('%d\n%d\n' % (n, ans))