結果

問題 No.1013 〇マス進む
ユーザー 37zigen37zigen
提出日時 2019-12-07 22:09:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,348 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,612 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 138,928 KB
最終ジャッジ日時 2024-12-26 12:02:55
合計ジャッジ時間 49,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,028 KB
testcase_01 AC 127 ms
41,132 KB
testcase_02 AC 117 ms
39,948 KB
testcase_03 AC 169 ms
41,812 KB
testcase_04 AC 142 ms
41,516 KB
testcase_05 AC 183 ms
41,976 KB
testcase_06 AC 166 ms
41,624 KB
testcase_07 AC 190 ms
42,624 KB
testcase_08 AC 194 ms
42,080 KB
testcase_09 AC 211 ms
42,784 KB
testcase_10 AC 201 ms
42,776 KB
testcase_11 AC 168 ms
41,840 KB
testcase_12 AC 206 ms
42,804 KB
testcase_13 AC 259 ms
47,880 KB
testcase_14 AC 687 ms
84,860 KB
testcase_15 AC 977 ms
103,956 KB
testcase_16 AC 995 ms
98,964 KB
testcase_17 AC 791 ms
79,776 KB
testcase_18 AC 937 ms
89,652 KB
testcase_19 AC 666 ms
66,860 KB
testcase_20 AC 1,129 ms
133,816 KB
testcase_21 AC 701 ms
79,024 KB
testcase_22 AC 829 ms
90,780 KB
testcase_23 AC 439 ms
58,676 KB
testcase_24 AC 1,205 ms
136,780 KB
testcase_25 AC 1,128 ms
135,036 KB
testcase_26 AC 436 ms
58,416 KB
testcase_27 AC 636 ms
76,416 KB
testcase_28 AC 430 ms
58,848 KB
testcase_29 AC 1,064 ms
132,008 KB
testcase_30 AC 564 ms
68,232 KB
testcase_31 AC 828 ms
95,008 KB
testcase_32 AC 722 ms
85,656 KB
testcase_33 AC 732 ms
86,464 KB
testcase_34 AC 957 ms
101,644 KB
testcase_35 AC 1,014 ms
99,640 KB
testcase_36 AC 286 ms
48,532 KB
testcase_37 AC 280 ms
48,128 KB
testcase_38 AC 1,052 ms
115,544 KB
testcase_39 AC 556 ms
65,080 KB
testcase_40 AC 1,012 ms
101,436 KB
testcase_41 AC 451 ms
59,152 KB
testcase_42 AC 724 ms
84,856 KB
testcase_43 AC 572 ms
66,196 KB
testcase_44 AC 786 ms
87,232 KB
testcase_45 AC 689 ms
78,980 KB
testcase_46 AC 471 ms
60,936 KB
testcase_47 AC 730 ms
84,952 KB
testcase_48 AC 778 ms
90,600 KB
testcase_49 AC 1,040 ms
101,064 KB
testcase_50 AC 848 ms
95,904 KB
testcase_51 AC 811 ms
92,392 KB
testcase_52 AC 368 ms
53,380 KB
testcase_53 AC 404 ms
55,572 KB
testcase_54 AC 883 ms
99,416 KB
testcase_55 AC 511 ms
61,732 KB
testcase_56 AC 1,124 ms
127,536 KB
testcase_57 AC 890 ms
95,836 KB
testcase_58 AC 1,348 ms
138,928 KB
testcase_59 AC 1,240 ms
138,732 KB
testcase_60 AC 1,154 ms
138,692 KB
testcase_61 AC 1,112 ms
138,504 KB
testcase_62 AC 1,112 ms
138,524 KB
testcase_63 AC 131 ms
41,100 KB
testcase_64 AC 114 ms
39,620 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