結果

問題 No.1013 〇マス進む
ユーザー chocoruskchocorusk
提出日時 2020-03-20 21:52:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 1,275 ms
コンパイル使用メモリ 109,488 KB
実行使用メモリ 27,308 KB
最終ジャッジ日時 2024-12-15 05:28:32
合計ジャッジ時間 9,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
24,020 KB
testcase_01 AC 6 ms
26,060 KB
testcase_02 AC 6 ms
26,192 KB
testcase_03 AC 7 ms
26,072 KB
testcase_04 AC 6 ms
24,024 KB
testcase_05 AC 7 ms
25,944 KB
testcase_06 AC 6 ms
24,032 KB
testcase_07 AC 8 ms
24,164 KB
testcase_08 AC 7 ms
24,032 KB
testcase_09 AC 8 ms
26,064 KB
testcase_10 AC 7 ms
24,168 KB
testcase_11 AC 6 ms
26,064 KB
testcase_12 AC 8 ms
26,064 KB
testcase_13 AC 12 ms
26,080 KB
testcase_14 AC 92 ms
25,468 KB
testcase_15 AC 155 ms
27,044 KB
testcase_16 AC 137 ms
26,288 KB
testcase_17 AC 82 ms
26,532 KB
testcase_18 AC 104 ms
25,644 KB
testcase_19 AC 61 ms
26,292 KB
testcase_20 AC 186 ms
27,028 KB
testcase_21 AC 75 ms
26,500 KB
testcase_22 AC 107 ms
26,696 KB
testcase_23 AC 36 ms
24,564 KB
testcase_24 AC 189 ms
27,284 KB
testcase_25 AC 188 ms
27,236 KB
testcase_26 AC 40 ms
26,260 KB
testcase_27 AC 72 ms
26,468 KB
testcase_28 AC 39 ms
24,612 KB
testcase_29 AC 184 ms
27,044 KB
testcase_30 AC 73 ms
25,036 KB
testcase_31 AC 126 ms
26,656 KB
testcase_32 AC 87 ms
25,564 KB
testcase_33 AC 97 ms
26,596 KB
testcase_34 AC 162 ms
26,344 KB
testcase_35 AC 159 ms
26,392 KB
testcase_36 AC 16 ms
24,244 KB
testcase_37 AC 16 ms
24,112 KB
testcase_38 AC 169 ms
27,048 KB
testcase_39 AC 59 ms
26,376 KB
testcase_40 AC 164 ms
26,844 KB
testcase_41 AC 41 ms
24,616 KB
testcase_42 AC 95 ms
25,520 KB
testcase_43 AC 63 ms
24,776 KB
testcase_44 AC 96 ms
25,572 KB
testcase_45 AC 90 ms
25,580 KB
testcase_46 AC 44 ms
26,168 KB
testcase_47 AC 94 ms
26,628 KB
testcase_48 AC 106 ms
26,784 KB
testcase_49 AC 170 ms
26,912 KB
testcase_50 AC 135 ms
26,020 KB
testcase_51 AC 120 ms
25,864 KB
testcase_52 AC 28 ms
24,484 KB
testcase_53 AC 37 ms
26,248 KB
testcase_54 AC 142 ms
26,936 KB
testcase_55 AC 49 ms
26,268 KB
testcase_56 AC 195 ms
26,916 KB
testcase_57 AC 141 ms
26,656 KB
testcase_58 AC 234 ms
27,308 KB
testcase_59 AC 239 ms
27,112 KB
testcase_60 AC 211 ms
27,276 KB
testcase_61 AC 187 ms
27,256 KB
testcase_62 AC 177 ms
27,172 KB
testcase_63 AC 6 ms
24,016 KB
testcase_64 AC 6 ms
26,064 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