結果

問題 No.1013 〇マス進む
ユーザー n_vipn_vip
提出日時 2020-03-20 21:29:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 2,039 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 134,644 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-05-08 20:42:12
合計ジャッジ時間 9,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 38 ms
15,872 KB
testcase_15 AC 62 ms
23,680 KB
testcase_16 AC 55 ms
21,888 KB
testcase_17 AC 34 ms
14,336 KB
testcase_18 AC 44 ms
16,640 KB
testcase_19 AC 27 ms
11,264 KB
testcase_20 AC 73 ms
28,032 KB
testcase_21 AC 32 ms
13,440 KB
testcase_22 AC 45 ms
17,280 KB
testcase_23 AC 16 ms
8,064 KB
testcase_24 AC 72 ms
29,056 KB
testcase_25 AC 72 ms
28,416 KB
testcase_26 AC 17 ms
8,064 KB
testcase_27 AC 29 ms
12,672 KB
testcase_28 AC 16 ms
8,064 KB
testcase_29 AC 68 ms
27,648 KB
testcase_30 AC 30 ms
11,840 KB
testcase_31 AC 48 ms
19,456 KB
testcase_32 AC 34 ms
15,488 KB
testcase_33 AC 43 ms
15,360 KB
testcase_34 AC 71 ms
22,656 KB
testcase_35 AC 80 ms
21,504 KB
testcase_36 AC 7 ms
5,376 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 78 ms
24,448 KB
testcase_39 AC 32 ms
10,112 KB
testcase_40 AC 84 ms
22,400 KB
testcase_41 AC 22 ms
8,320 KB
testcase_42 AC 48 ms
14,720 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 47 ms
15,360 KB
testcase_45 AC 43 ms
13,952 KB
testcase_46 AC 24 ms
8,576 KB
testcase_47 AC 42 ms
14,720 KB
testcase_48 AC 49 ms
16,896 KB
testcase_49 AC 89 ms
22,272 KB
testcase_50 AC 61 ms
19,456 KB
testcase_51 AC 55 ms
17,792 KB
testcase_52 AC 15 ms
6,272 KB
testcase_53 AC 19 ms
7,808 KB
testcase_54 AC 61 ms
21,376 KB
testcase_55 AC 28 ms
8,704 KB
testcase_56 AC 97 ms
26,112 KB
testcase_57 AC 71 ms
18,816 KB
testcase_58 AC 120 ms
29,568 KB
testcase_59 AC 112 ms
29,568 KB
testcase_60 AC 92 ms
29,696 KB
testcase_61 AC 67 ms
29,440 KB
testcase_62 AC 64 ms
29,440 KB
testcase_63 AC 3 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <vector>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<stack>
#include<queue>
#include<cmath>
#include<algorithm>
#include<functional>
#include<list>
#include<deque>
#include<bitset>
#include<set>
#include<map>
#include<unordered_map>
#include<unordered_set>
#include<cstring>
#include<sstream>
#include<complex>
#include<iomanip>
#include<numeric>
#include<cassert>
#include<random>
#define X first
#define Y second
#define pb push_back
#define rep(X,Y) for (int (X) = 0;(X) < (Y);++(X))
#define reps(X,S,Y) for (int (X) = S;(X) < (Y);++(X))
#define rrep(X,Y) for (int (X) = (Y)-1;(X) >=0;--(X))
#define rreps(X,S,Y) for (int (X) = (Y)-1;(X) >= (S);--(X))
#define repe(X,Y) for ((X) = 0;(X) < (Y);++(X))
#define peat(X,Y) for (;(X) < (Y);++(X))
#define all(X) (X).begin(),(X).end()
#define rall(X) (X).rbegin(),(X).rend()
#define eb emplace_back
#define UNIQUE(X) (X).erase(unique(all(X)),(X).end())
#define Endl endl
#define NL <<"\n"

using namespace std;
using ll=long long;
using pii=pair<int,int>;
using pll=pair<ll,ll>;
template<class T> using vv=vector<vector<T>>;
template<class T> inline bool MX(T &l,const T &r){return l<r?l=r,1:0;}
template<class T> inline bool MN(T &l,const T &r){return l>r?l=r,1:0;}
//#undef NUIP
#ifdef NUIP
#include "benri.h"
#else
#define out(args...)
#endif
#ifdef __cpp_init_captures
template<typename T>vector<T> table(int n, T v){ return vector<T>(n, v);}
template <class... Args> auto table(int n, Args... args){auto val = table(args...); return vector<decltype(val)>(n, move(val));}
#endif
const ll MOD=1e9+7; //998244353

ll dbl[33][112345]; 

int main(){
  ios_base::sync_with_stdio(false); cin.tie(0);
  cout<<fixed<<setprecision(0);
	int n,t;
	cin>>n>>t;
	vector<int> p(n);
	rep(i,n) cin>>p[i];
	rep(i,n) dbl[0][i]=p[i];
	rep(d,31)rep(i,n){
		int cur=(i+dbl[d][i])%n;
		dbl[d+1][i]=dbl[d][i]+dbl[d][cur];
	}
	vector<ll> re(n);
	rep(i,n){
		re[i]=i;
		rep(d,31)if(t>>d&1){
			re[i]+=dbl[d][re[i]%n];
		}
	}
	for(auto x:re) cout<<x+1 NL;
  return 0;
}
0