結果
問題 | No.303 割れません |
ユーザー | rpy3cpp |
提出日時 | 2017-10-12 23:31:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 876 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-11-17 10:56:51 |
合計ジャッジ時間 | 71,698 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
22,016 KB |
testcase_01 | AC | 31 ms
21,760 KB |
testcase_02 | AC | 30 ms
21,888 KB |
testcase_03 | RE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | RE | - |
testcase_13 | TLE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
ソースコード
def solve(L): if L == 1: return 1, 1 elif L == 2: return 4, 1 # 3を買ってきて切る elif L & 1: return L, fib(L) else: return L, 2 * fibfib(L//2) def fib(L): '''a1 = fib(2*k), a0 = fib(2*k-1) ''' k = (L + 1) // 2 a1, a0 = 0, 1 p1, p0 = 1, 1 while k: if k & 1: ac = a1 * p1 a1 = ac + a1*p0 + a0*p1 a0 = ac + a0*p0 p2 = p1 * p1 p1 = p2 + 2*p1*p0 p0 = p2 + p0*p0 k >>= 1 if L & 1: return a0 else: return a1 def fibfib(m): '''fib(m)*fib(m-1) ''' if m == 1: return 0 if m == 2: return 1 # fib(2)*fib(1) = 1 a = 1 b = 1 for i in range(m - 2): a, b = a + b, a return a * b L = int(input()) cost, n_pat = solve(L) print(cost) print(n_pat)