結果

問題 No.1013 〇マス進む
ユーザー chocoruskchocorusk
提出日時 2020-03-20 21:52:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 109,204 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-05-08 21:46:45
合計ジャッジ時間 10,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 96 ms
14,976 KB
testcase_15 AC 168 ms
22,016 KB
testcase_16 AC 149 ms
20,480 KB
testcase_17 AC 85 ms
13,440 KB
testcase_18 AC 114 ms
15,744 KB
testcase_19 AC 66 ms
10,880 KB
testcase_20 AC 192 ms
26,112 KB
testcase_21 AC 79 ms
12,672 KB
testcase_22 AC 119 ms
16,256 KB
testcase_23 AC 38 ms
7,680 KB
testcase_24 AC 212 ms
27,008 KB
testcase_25 AC 210 ms
26,496 KB
testcase_26 AC 37 ms
7,680 KB
testcase_27 AC 74 ms
12,160 KB
testcase_28 AC 38 ms
7,680 KB
testcase_29 AC 194 ms
25,728 KB
testcase_30 AC 70 ms
11,264 KB
testcase_31 AC 131 ms
18,048 KB
testcase_32 AC 97 ms
14,464 KB
testcase_33 AC 103 ms
14,464 KB
testcase_34 AC 171 ms
20,992 KB
testcase_35 AC 171 ms
20,096 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 12 ms
5,376 KB
testcase_38 AC 190 ms
22,784 KB
testcase_39 AC 63 ms
9,728 KB
testcase_40 AC 189 ms
20,864 KB
testcase_41 AC 42 ms
7,808 KB
testcase_42 AC 103 ms
14,208 KB
testcase_43 AC 63 ms
10,368 KB
testcase_44 AC 108 ms
14,592 KB
testcase_45 AC 97 ms
13,312 KB
testcase_46 AC 48 ms
8,192 KB
testcase_47 AC 99 ms
13,952 KB
testcase_48 AC 122 ms
15,872 KB
testcase_49 AC 185 ms
20,864 KB
testcase_50 AC 145 ms
18,176 KB
testcase_51 AC 131 ms
16,768 KB
testcase_52 AC 28 ms
6,144 KB
testcase_53 AC 37 ms
7,168 KB
testcase_54 AC 153 ms
19,968 KB
testcase_55 AC 51 ms
8,448 KB
testcase_56 AC 221 ms
24,320 KB
testcase_57 AC 157 ms
17,664 KB
testcase_58 AC 263 ms
27,392 KB
testcase_59 AC 261 ms
27,264 KB
testcase_60 AC 237 ms
27,264 KB
testcase_61 AC 205 ms
27,264 KB
testcase_62 AC 201 ms
27,264 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;

int main()
{
	int n, k;
	cin>>n>>k;
	int p[100010];
	for(int i=0; i<n; i++) cin>>p[i];
	ll dp[30][100010];
	for(int i=0; i<n; i++) dp[0][i]=p[i];
	for(int i=1; i<30; i++){
		for(int j=0; j<n; j++){
			dp[i][j]=dp[i-1][j]+dp[i-1][(j+dp[i-1][j])%n];
		}
	}
	for(int i=0; i<n; i++){
		ll ans=i;
		for(int j=0; j<30; j++){
			if(k&(1<<j)){
				ans+=dp[j][ans%n];
			}
		}
		cout<<ans+1<<endl;
	}
	return 0;
}
0