結果

問題 No.1013 〇マス進む
ユーザー 37zigen37zigen
提出日時 2019-12-07 22:09:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,123 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 77,552 KB
実行使用メモリ 151,668 KB
最終ジャッジ日時 2024-06-08 00:15:25
合計ジャッジ時間 43,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,064 KB
testcase_01 AC 127 ms
54,172 KB
testcase_02 AC 127 ms
53,948 KB
testcase_03 AC 162 ms
54,364 KB
testcase_04 AC 148 ms
54,280 KB
testcase_05 AC 175 ms
54,256 KB
testcase_06 AC 176 ms
54,528 KB
testcase_07 AC 190 ms
54,584 KB
testcase_08 AC 168 ms
54,352 KB
testcase_09 AC 200 ms
56,476 KB
testcase_10 AC 192 ms
54,440 KB
testcase_11 AC 169 ms
54,332 KB
testcase_12 AC 194 ms
56,628 KB
testcase_13 AC 246 ms
59,984 KB
testcase_14 AC 668 ms
98,516 KB
testcase_15 AC 853 ms
117,784 KB
testcase_16 AC 806 ms
111,852 KB
testcase_17 AC 616 ms
93,008 KB
testcase_18 AC 692 ms
102,088 KB
testcase_19 AC 532 ms
78,716 KB
testcase_20 AC 986 ms
146,384 KB
testcase_21 AC 583 ms
87,980 KB
testcase_22 AC 761 ms
104,376 KB
testcase_23 AC 401 ms
70,360 KB
testcase_24 AC 1,074 ms
150,072 KB
testcase_25 AC 978 ms
148,944 KB
testcase_26 AC 395 ms
70,340 KB
testcase_27 AC 587 ms
86,316 KB
testcase_28 AC 400 ms
70,380 KB
testcase_29 AC 967 ms
145,572 KB
testcase_30 AC 578 ms
80,440 KB
testcase_31 AC 763 ms
108,540 KB
testcase_32 AC 662 ms
96,756 KB
testcase_33 AC 707 ms
97,716 KB
testcase_34 AC 843 ms
115,328 KB
testcase_35 AC 857 ms
113,624 KB
testcase_36 AC 262 ms
60,476 KB
testcase_37 AC 266 ms
60,404 KB
testcase_38 AC 950 ms
128,172 KB
testcase_39 AC 487 ms
77,272 KB
testcase_40 AC 893 ms
113,360 KB
testcase_41 AC 411 ms
69,152 KB
testcase_42 AC 673 ms
96,172 KB
testcase_43 AC 493 ms
78,564 KB
testcase_44 AC 689 ms
98,244 KB
testcase_45 AC 617 ms
89,732 KB
testcase_46 AC 442 ms
71,492 KB
testcase_47 AC 671 ms
96,148 KB
testcase_48 AC 731 ms
102,704 KB
testcase_49 AC 880 ms
113,240 KB
testcase_50 AC 743 ms
109,200 KB
testcase_51 AC 753 ms
104,732 KB
testcase_52 AC 327 ms
63,372 KB
testcase_53 AC 384 ms
65,724 KB
testcase_54 AC 816 ms
111,356 KB
testcase_55 AC 443 ms
71,300 KB
testcase_56 AC 1,029 ms
140,524 KB
testcase_57 AC 773 ms
108,632 KB
testcase_58 AC 1,123 ms
151,104 KB
testcase_59 AC 1,094 ms
151,668 KB
testcase_60 AC 1,034 ms
151,656 KB
testcase_61 AC 996 ms
151,244 KB
testcase_62 AC 959 ms
151,188 KB
testcase_63 AC 131 ms
54,080 KB
testcase_64 AC 128 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

class Main
{
	public static void main(String[] args)
	{
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long K=sc.nextLong();
		int[] P=new int[N];
		long[][] add=new long[63][N];
		for(int i=0;i<N;++i){
			P[i]=sc.nextInt();
			add[0][i]=P[i];
		}
		for(int i=0;i+1<30;++i){
			for(int j=0;j<N;++j){
				add[i+1][j]=add[i][j]+add[i][(int)((j+add[i][j])%N)];
			}
		}
		PrintWriter pw=new PrintWriter(System.out);
		for(int i=0;i<N;++i){
			long res=K;
			long cur=i;
			for(int shift=0;shift<30;++shift){
				if((res>>shift)%2==1)
					cur=cur+add[shift][(int)(cur%N)];
			}
			pw.println(cur+1);
		}
		pw.close();
	}
	
	void tr(Object...objects){
		System.out.println(Arrays.deepToString(objects));
	}
}
0