結果
問題 | No.1013 〇マス進む |
ユーザー | iqueue02 |
提出日時 | 2020-03-21 10:34:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 1,786 ms |
コンパイル使用メモリ | 171,228 KB |
実行使用メモリ | 16,896 KB |
最終ジャッジ日時 | 2024-05-10 04:03:45 |
合計ジャッジ時間 | 12,551 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 97 ms
9,856 KB |
testcase_15 | AC | 179 ms
13,696 KB |
testcase_16 | AC | 153 ms
13,056 KB |
testcase_17 | AC | 85 ms
8,960 KB |
testcase_18 | AC | 109 ms
10,240 KB |
testcase_19 | AC | 61 ms
7,296 KB |
testcase_20 | AC | 206 ms
16,256 KB |
testcase_21 | AC | 78 ms
8,576 KB |
testcase_22 | AC | 109 ms
10,496 KB |
testcase_23 | AC | 34 ms
5,504 KB |
testcase_24 | AC | 212 ms
16,640 KB |
testcase_25 | AC | 204 ms
16,384 KB |
testcase_26 | AC | 36 ms
5,504 KB |
testcase_27 | AC | 71 ms
8,192 KB |
testcase_28 | AC | 36 ms
5,760 KB |
testcase_29 | AC | 194 ms
16,000 KB |
testcase_30 | AC | 68 ms
7,552 KB |
testcase_31 | AC | 131 ms
11,776 KB |
testcase_32 | AC | 91 ms
9,472 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | AC | 202 ms
16,896 KB |
testcase_62 | AC | 190 ms
16,896 KB |
testcase_63 | AC | 2 ms
5,376 KB |
testcase_64 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; int main(){ int n, k; cin >> n >> k; vector<int> p(n); rep(i,n) cin >> p[i]; vector<vector<int>> to(33, vector<int>(n)); for (int i = 0; i < n; i++) to[0][i] = p[i]; for (int i = 0; i < 32; i++) { for (int j = 0; j < n; j++) to[i + 1][j] = to[i][j] + to[i][(j + to[i][j]) % n]; } for (int i = 0; i < n; i++) { ll res = i; for (int j = 0; j < 32; j++) { if (k & (1 << j)) res += to[j][res % n]; } cout << res + 1 << endl; } return 0; }