結果

問題 No.1013 〇マス進む
ユーザー htensaihtensai
提出日時 2020-03-24 15:29:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 99,808 KB
最終ジャッジ日時 2024-06-10 05:59:25
合計ジャッジ時間 39,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,056 KB
testcase_01 AC 111 ms
41,096 KB
testcase_02 AC 102 ms
40,388 KB
testcase_03 AC 152 ms
41,896 KB
testcase_04 AC 117 ms
41,400 KB
testcase_05 AC 140 ms
41,708 KB
testcase_06 AC 154 ms
41,740 KB
testcase_07 AC 161 ms
42,468 KB
testcase_08 AC 150 ms
41,808 KB
testcase_09 AC 167 ms
42,284 KB
testcase_10 AC 162 ms
42,468 KB
testcase_11 AC 140 ms
41,872 KB
testcase_12 AC 165 ms
42,472 KB
testcase_13 AC 209 ms
46,700 KB
testcase_14 AC 566 ms
65,408 KB
testcase_15 AC 841 ms
85,744 KB
testcase_16 AC 737 ms
81,152 KB
testcase_17 AC 512 ms
63,400 KB
testcase_18 AC 624 ms
66,472 KB
testcase_19 AC 435 ms
56,460 KB
testcase_20 AC 916 ms
96,396 KB
testcase_21 AC 498 ms
61,864 KB
testcase_22 AC 601 ms
70,504 KB
testcase_23 AC 331 ms
52,932 KB
testcase_24 AC 945 ms
98,776 KB
testcase_25 AC 940 ms
97,560 KB
testcase_26 AC 326 ms
52,748 KB
testcase_27 AC 512 ms
61,284 KB
testcase_28 AC 324 ms
52,924 KB
testcase_29 AC 903 ms
96,172 KB
testcase_30 AC 477 ms
59,280 KB
testcase_31 AC 587 ms
73,088 KB
testcase_32 AC 566 ms
64,796 KB
testcase_33 AC 571 ms
64,984 KB
testcase_34 AC 800 ms
85,984 KB
testcase_35 AC 775 ms
79,560 KB
testcase_36 AC 221 ms
47,424 KB
testcase_37 AC 215 ms
47,436 KB
testcase_38 AC 763 ms
91,072 KB
testcase_39 AC 411 ms
54,960 KB
testcase_40 AC 808 ms
87,492 KB
testcase_41 AC 337 ms
52,704 KB
testcase_42 AC 612 ms
65,716 KB
testcase_43 AC 461 ms
55,796 KB
testcase_44 AC 593 ms
65,220 KB
testcase_45 AC 521 ms
63,192 KB
testcase_46 AC 344 ms
53,344 KB
testcase_47 AC 576 ms
64,404 KB
testcase_48 AC 597 ms
67,120 KB
testcase_49 AC 848 ms
87,492 KB
testcase_50 AC 648 ms
73,604 KB
testcase_51 AC 622 ms
72,312 KB
testcase_52 AC 288 ms
50,628 KB
testcase_53 AC 327 ms
52,024 KB
testcase_54 AC 733 ms
76,712 KB
testcase_55 AC 399 ms
53,856 KB
testcase_56 AC 904 ms
93,348 KB
testcase_57 AC 695 ms
76,488 KB
testcase_58 AC 1,021 ms
99,616 KB
testcase_59 AC 992 ms
99,560 KB
testcase_60 AC 1,017 ms
99,808 KB
testcase_61 AC 912 ms
99,468 KB
testcase_62 AC 827 ms
98,848 KB
testcase_63 AC 101 ms
40,060 KB
testcase_64 AC 97 ms
39,956 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