結果

問題 No.1013 〇マス進む
ユーザー htensaihtensai
提出日時 2020-03-24 15:29:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,204 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 113,196 KB
最終ジャッジ日時 2024-12-31 15:06:32
合計ジャッジ時間 43,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,184 KB
testcase_01 AC 113 ms
52,556 KB
testcase_02 AC 127 ms
53,988 KB
testcase_03 AC 169 ms
54,248 KB
testcase_04 AC 136 ms
53,940 KB
testcase_05 AC 158 ms
56,476 KB
testcase_06 AC 150 ms
53,960 KB
testcase_07 AC 178 ms
54,248 KB
testcase_08 AC 169 ms
53,988 KB
testcase_09 AC 182 ms
54,568 KB
testcase_10 AC 176 ms
54,476 KB
testcase_11 AC 148 ms
54,432 KB
testcase_12 AC 181 ms
54,360 KB
testcase_13 AC 222 ms
57,848 KB
testcase_14 AC 598 ms
76,680 KB
testcase_15 AC 905 ms
98,624 KB
testcase_16 AC 795 ms
95,128 KB
testcase_17 AC 614 ms
73,876 KB
testcase_18 AC 677 ms
76,632 KB
testcase_19 AC 501 ms
66,112 KB
testcase_20 AC 960 ms
108,288 KB
testcase_21 AC 565 ms
72,376 KB
testcase_22 AC 686 ms
78,676 KB
testcase_23 AC 343 ms
63,188 KB
testcase_24 AC 1,023 ms
109,824 KB
testcase_25 AC 977 ms
109,060 KB
testcase_26 AC 360 ms
63,188 KB
testcase_27 AC 523 ms
71,420 KB
testcase_28 AC 361 ms
63,436 KB
testcase_29 AC 950 ms
107,364 KB
testcase_30 AC 508 ms
70,304 KB
testcase_31 AC 713 ms
84,992 KB
testcase_32 AC 623 ms
76,408 KB
testcase_33 AC 609 ms
76,804 KB
testcase_34 AC 919 ms
97,852 KB
testcase_35 AC 886 ms
90,976 KB
testcase_36 AC 246 ms
57,660 KB
testcase_37 AC 247 ms
57,856 KB
testcase_38 AC 970 ms
101,224 KB
testcase_39 AC 503 ms
65,812 KB
testcase_40 AC 972 ms
99,460 KB
testcase_41 AC 392 ms
63,568 KB
testcase_42 AC 643 ms
76,720 KB
testcase_43 AC 486 ms
65,668 KB
testcase_44 AC 681 ms
76,480 KB
testcase_45 AC 527 ms
73,724 KB
testcase_46 AC 404 ms
63,320 KB
testcase_47 AC 593 ms
76,432 KB
testcase_48 AC 686 ms
78,712 KB
testcase_49 AC 959 ms
99,380 KB
testcase_50 AC 767 ms
82,356 KB
testcase_51 AC 680 ms
83,116 KB
testcase_52 AC 297 ms
61,048 KB
testcase_53 AC 351 ms
63,364 KB
testcase_54 AC 817 ms
87,080 KB
testcase_55 AC 421 ms
63,544 KB
testcase_56 AC 981 ms
104,456 KB
testcase_57 AC 759 ms
86,880 KB
testcase_58 AC 1,204 ms
113,112 KB
testcase_59 AC 1,093 ms
111,812 KB
testcase_60 AC 1,127 ms
113,144 KB
testcase_61 AC 1,000 ms
113,196 KB
testcase_62 AC 1,002 ms
99,852 KB
testcase_63 AC 126 ms
53,860 KB
testcase_64 AC 121 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n];
        long[][] answers = new long[n][31];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            answers[i][0] = arr[i];
        }
        for (int i = 1; i < 31; i++) {
            for (int j = 0; j < n; j++) {
                answers[j][i] = answers[j][i - 1] + answers[(int)((j + answers[j][i - 1]) % n)][i - 1];
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            int x = k;
            long ans = i;
            for (int j = 30; j >= 0; j--) {
                if (x >= (1 << j)) {
                    ans += answers[(int)(ans % n)][j];
                    x -= (1 << j);
                }
            }
            ans++;
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
0