結果
問題 | No.1331 Moving Penguin |
ユーザー | tnakao0123 |
提出日時 | 2021-01-11 00:47:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,050 bytes |
コンパイル時間 | 703 ms |
コンパイル使用メモリ | 94,308 KB |
実行使用メモリ | 17,736 KB |
最終ジャッジ日時 | 2024-11-21 08:40:17 |
合計ジャッジ時間 | 50,416 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,636 KB |
testcase_01 | AC | 2 ms
10,912 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 2 ms
10,920 KB |
testcase_04 | AC | 14 ms
13,640 KB |
testcase_05 | AC | 422 ms
10,784 KB |
testcase_06 | AC | 418 ms
13,636 KB |
testcase_07 | AC | 423 ms
10,916 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 15 ms
13,636 KB |
testcase_27 | AC | 15 ms
6,816 KB |
testcase_28 | AC | 15 ms
6,820 KB |
testcase_29 | AC | 14 ms
6,816 KB |
testcase_30 | AC | 6 ms
6,820 KB |
testcase_31 | AC | 10 ms
6,816 KB |
testcase_32 | AC | 6 ms
6,820 KB |
testcase_33 | AC | 8 ms
6,820 KB |
testcase_34 | AC | 10 ms
6,820 KB |
testcase_35 | AC | 44 ms
6,816 KB |
testcase_36 | AC | 44 ms
6,820 KB |
testcase_37 | AC | 44 ms
6,816 KB |
testcase_38 | AC | 6 ms
6,816 KB |
testcase_39 | AC | 15 ms
6,816 KB |
testcase_40 | AC | 9 ms
6,816 KB |
testcase_41 | AC | 45 ms
6,816 KB |
testcase_42 | AC | 42 ms
6,820 KB |
testcase_43 | AC | 42 ms
6,816 KB |
testcase_44 | AC | 42 ms
6,820 KB |
testcase_45 | AC | 41 ms
6,820 KB |
testcase_46 | AC | 42 ms
6,820 KB |
testcase_47 | AC | 42 ms
6,816 KB |
testcase_48 | TLE | - |
ソースコード
/* -*- coding: utf-8 -*- * * 1331.cc: No.1331 Moving Penguin - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100000; const int MOD = 1000000007; /* typedef */ typedef long long ll; typedef vector<int> vi; typedef queue<int> qi; typedef pair<int,int> pii; /* global variables */ int as[MAX_N], dp[MAX_N]; /* subroutines */ inline void addmod(int &a, int b) { a = (a + b) % MOD; } /* main */ int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%d", as + i); dp[0] = 1; for (int i = 0; i < n; i++) { for (int j = i + as[i]; j < n; j += as[i]) addmod(dp[j], dp[i]); if (i + 1 < n && as[i] != 1) addmod(dp[i + 1], dp[i]); } printf("%d\n", dp[n - 1]); return 0; }