結果
問題 | No.194 フィボナッチ数列の理解(1) |
ユーザー | alpha_virginis |
提出日時 | 2015-04-26 23:24:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 697 bytes |
コンパイル時間 | 1,273 ms |
コンパイル使用メモリ | 160,868 KB |
実行使用メモリ | 11,596 KB |
最終ジャッジ日時 | 2024-07-05 02:17:49 |
合計ジャッジ時間 | 2,442 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 16 ms
11,596 KB |
testcase_21 | AC | 17 ms
11,592 KB |
testcase_22 | AC | 16 ms
11,472 KB |
testcase_23 | AC | 4 ms
5,376 KB |
testcase_24 | AC | 11 ms
7,628 KB |
testcase_25 | AC | 10 ms
7,496 KB |
testcase_26 | AC | 10 ms
7,496 KB |
testcase_27 | AC | 13 ms
11,464 KB |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 16 ms
11,468 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> int main() { long N, K; std::cin >> N >> K; if( K <= 1000000 ) { std::vector<long> v; long num; long temp; long total; num = 0; for(int i = 0; i < N; ++i) { std::cin >> temp; v.push_back(temp); num += temp; num %= 1000000007; } total = num; for(int i = N; i < K; ++i) { v.push_back(num); total += num; total %= 1000000007; num *= 2; num += 1000000007; num -= v[i-N]; num %= 1000000007; } std::cout << v[K-1]%1000000007 << " " << total << std::endl; return 0; } else { std::cout << 1 << " " << 1 << std::endl; } return 0; }