結果

問題 No.1013 〇マス進む
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-03 23:19:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 207,788 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-10-01 00:09:37
合計ジャッジ時間 12,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,824 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,824 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 4 ms
6,816 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 101 ms
18,816 KB
testcase_15 AC 166 ms
28,416 KB
testcase_16 AC 150 ms
26,240 KB
testcase_17 AC 88 ms
16,768 KB
testcase_18 AC 108 ms
19,840 KB
testcase_19 AC 63 ms
13,184 KB
testcase_20 AC 206 ms
34,048 KB
testcase_21 AC 80 ms
15,744 KB
testcase_22 AC 113 ms
20,480 KB
testcase_23 AC 35 ms
8,832 KB
testcase_24 AC 207 ms
35,072 KB
testcase_25 AC 204 ms
34,432 KB
testcase_26 AC 36 ms
8,832 KB
testcase_27 AC 73 ms
14,976 KB
testcase_28 AC 36 ms
8,832 KB
testcase_29 AC 195 ms
33,408 KB
testcase_30 AC 69 ms
13,696 KB
testcase_31 AC 127 ms
23,296 KB
testcase_32 AC 93 ms
18,176 KB
testcase_33 AC 100 ms
18,176 KB
testcase_34 AC 171 ms
27,008 KB
testcase_35 AC 170 ms
25,600 KB
testcase_36 AC 13 ms
6,816 KB
testcase_37 AC 11 ms
6,816 KB
testcase_38 AC 183 ms
29,440 KB
testcase_39 AC 63 ms
11,648 KB
testcase_40 AC 185 ms
26,752 KB
testcase_41 AC 42 ms
8,960 KB
testcase_42 AC 101 ms
17,536 KB
testcase_43 AC 66 ms
12,416 KB
testcase_44 AC 106 ms
18,304 KB
testcase_45 AC 92 ms
16,512 KB
testcase_46 AC 45 ms
9,472 KB
testcase_47 AC 95 ms
17,536 KB
testcase_48 AC 112 ms
19,968 KB
testcase_49 AC 193 ms
26,752 KB
testcase_50 AC 142 ms
23,296 KB
testcase_51 AC 129 ms
21,120 KB
testcase_52 AC 26 ms
6,820 KB
testcase_53 AC 36 ms
8,320 KB
testcase_54 AC 154 ms
25,472 KB
testcase_55 AC 49 ms
9,984 KB
testcase_56 AC 216 ms
31,488 KB
testcase_57 AC 152 ms
22,528 KB
testcase_58 AC 271 ms
35,712 KB
testcase_59 AC 262 ms
35,840 KB
testcase_60 AC 246 ms
35,712 KB
testcase_61 AC 210 ms
35,712 KB
testcase_62 AC 199 ms
35,712 KB
testcase_63 AC 1 ms
6,816 KB
testcase_64 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
	int N;ll K;cin >> N >> K;
	vector<int> P(N, 0);
	for (int i = 0;i < N;i++) cin >> P[i];
	vector<vector<ll>> dp(40, vector<ll>(N, 0));
	for (int i = 0;i < N;i++) dp[0][i] = P[i];
	for (int i = 1;i < 40;i++) for (int j = 0;j < N;j++) {
		ll k = (j + dp[i - 1][j]) % N;
		dp[i][j] = dp[i - 1][j] + dp[i - 1][k];
	}
	for (int i = 0;i < N;i++) {
		ll ans = i;
		ll k = K;
		int c = 0;
		while (k != 0) {
			int m = k % 2;
			if (m == 1) {
				ans += dp[c][ans % N];	
			}
			k -= m;
			k /= 2;
			c++;
		}
		cout << ans + 1 << endl;
	}
}
0