結果

問題 No.1013 〇マス進む
ユーザー tentententen
提出日時 2021-03-01 14:25:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 1,420 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 78,016 KB
最終ジャッジ日時 2024-10-03 00:51:58
合計ジャッジ時間 36,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,048 KB
testcase_01 AC 114 ms
40,028 KB
testcase_02 AC 132 ms
41,460 KB
testcase_03 AC 179 ms
41,804 KB
testcase_04 AC 137 ms
41,376 KB
testcase_05 AC 171 ms
41,784 KB
testcase_06 AC 172 ms
41,876 KB
testcase_07 AC 180 ms
42,280 KB
testcase_08 AC 173 ms
41,816 KB
testcase_09 AC 180 ms
42,660 KB
testcase_10 AC 181 ms
42,512 KB
testcase_11 AC 144 ms
41,972 KB
testcase_12 AC 176 ms
42,560 KB
testcase_13 AC 216 ms
45,664 KB
testcase_14 AC 566 ms
58,372 KB
testcase_15 AC 641 ms
67,616 KB
testcase_16 AC 603 ms
69,392 KB
testcase_17 AC 478 ms
55,968 KB
testcase_18 AC 528 ms
59,580 KB
testcase_19 AC 435 ms
53,020 KB
testcase_20 AC 735 ms
71,536 KB
testcase_21 AC 483 ms
54,228 KB
testcase_22 AC 549 ms
59,308 KB
testcase_23 AC 339 ms
48,480 KB
testcase_24 AC 734 ms
72,292 KB
testcase_25 AC 718 ms
74,460 KB
testcase_26 AC 328 ms
48,164 KB
testcase_27 AC 476 ms
55,812 KB
testcase_28 AC 336 ms
51,764 KB
testcase_29 AC 708 ms
72,852 KB
testcase_30 AC 465 ms
55,436 KB
testcase_31 AC 612 ms
61,668 KB
testcase_32 AC 515 ms
56,036 KB
testcase_33 AC 501 ms
56,128 KB
testcase_34 AC 659 ms
66,708 KB
testcase_35 AC 637 ms
70,700 KB
testcase_36 AC 238 ms
46,236 KB
testcase_37 AC 233 ms
46,308 KB
testcase_38 AC 595 ms
66,812 KB
testcase_39 AC 418 ms
52,780 KB
testcase_40 AC 627 ms
66,180 KB
testcase_41 AC 344 ms
51,084 KB
testcase_42 AC 465 ms
57,224 KB
testcase_43 AC 411 ms
54,860 KB
testcase_44 AC 604 ms
59,632 KB
testcase_45 AC 560 ms
57,024 KB
testcase_46 AC 351 ms
50,084 KB
testcase_47 AC 538 ms
57,868 KB
testcase_48 AC 582 ms
60,196 KB
testcase_49 AC 676 ms
67,276 KB
testcase_50 AC 649 ms
67,336 KB
testcase_51 AC 620 ms
61,444 KB
testcase_52 AC 276 ms
48,796 KB
testcase_53 AC 332 ms
48,996 KB
testcase_54 AC 671 ms
65,640 KB
testcase_55 AC 346 ms
50,020 KB
testcase_56 AC 730 ms
73,340 KB
testcase_57 AC 621 ms
65,084 KB
testcase_58 AC 710 ms
76,120 KB
testcase_59 AC 770 ms
76,036 KB
testcase_60 AC 731 ms
78,016 KB
testcase_61 AC 679 ms
72,764 KB
testcase_62 AC 728 ms
72,372 KB
testcase_63 AC 117 ms
40,672 KB
testcase_64 AC 121 ms
41,344 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[] permulation = new int[n];
        int[] base = new int[n];
        for (int i = 0; i < n; i++) {
            permulation[i] = sc.nextInt();
            base[i] = i;
        }
        int[][] idxes = new int[31][n];
        int[][] counts = new int[31][n];
        for (int i = 0; i < n; i++) {
            idxes[0][i] = (i + permulation[i]) % n;
            if (i + permulation[i] >= n) {
                counts[0][i] = 1;
            }
        }
        for (int i = 1; i < 31; i++) {
            for (int j = 0; j < n; j++) {
                idxes[i][j] = idxes[i - 1][idxes[i - 1][j]];
                counts[i][j] = counts[i - 1][j] + counts[i - 1][idxes[i - 1][j]];
            }
        }
        long[] add = new long[n];
        for (int i = 30; i >= 0; i--) {
            if (k >= (1 << i)) {
                k -= (1 << i);
                for (int j = 0; j < n; j++) {
                    add[j] += counts[i][base[j]];
                    base[j] = idxes[i][base[j]];
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            sb.append(add[i] * n + base[i] + 1).append("\n");
        }
        System.out.print(sb);
    }
}
0