結果

問題 No.1013 〇マス進む
ユーザー phsplsphspls
提出日時 2023-01-20 23:27:54
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 22,646 ms
コンパイル使用メモリ 398,304 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-06-23 11:28:04
合計ジャッジ時間 32,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 82 ms
15,104 KB
testcase_15 AC 145 ms
23,040 KB
testcase_16 AC 128 ms
21,120 KB
testcase_17 AC 74 ms
13,312 KB
testcase_18 AC 92 ms
16,000 KB
testcase_19 AC 55 ms
10,368 KB
testcase_20 AC 171 ms
27,776 KB
testcase_21 AC 68 ms
12,416 KB
testcase_22 AC 98 ms
16,256 KB
testcase_23 AC 31 ms
6,944 KB
testcase_24 AC 174 ms
28,672 KB
testcase_25 AC 175 ms
28,160 KB
testcase_26 AC 32 ms
6,940 KB
testcase_27 AC 61 ms
12,032 KB
testcase_28 AC 31 ms
6,940 KB
testcase_29 AC 166 ms
27,264 KB
testcase_30 AC 58 ms
10,752 KB
testcase_31 AC 109 ms
18,816 KB
testcase_32 AC 80 ms
14,592 KB
testcase_33 AC 85 ms
14,464 KB
testcase_34 AC 148 ms
21,888 KB
testcase_35 AC 142 ms
20,736 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 9 ms
6,944 KB
testcase_38 AC 156 ms
24,064 KB
testcase_39 AC 53 ms
8,960 KB
testcase_40 AC 156 ms
21,760 KB
testcase_41 AC 37 ms
6,940 KB
testcase_42 AC 87 ms
13,952 KB
testcase_43 AC 54 ms
9,600 KB
testcase_44 AC 94 ms
14,464 KB
testcase_45 AC 82 ms
13,056 KB
testcase_46 AC 39 ms
7,168 KB
testcase_47 AC 84 ms
13,952 KB
testcase_48 AC 100 ms
16,000 KB
testcase_49 AC 164 ms
21,760 KB
testcase_50 AC 123 ms
18,816 KB
testcase_51 AC 108 ms
17,024 KB
testcase_52 AC 22 ms
6,940 KB
testcase_53 AC 31 ms
6,940 KB
testcase_54 AC 129 ms
20,608 KB
testcase_55 AC 44 ms
7,552 KB
testcase_56 AC 183 ms
25,600 KB
testcase_57 AC 132 ms
18,048 KB
testcase_58 AC 223 ms
29,184 KB
testcase_59 AC 215 ms
29,184 KB
testcase_60 AC 202 ms
29,184 KB
testcase_61 AC 174 ms
29,184 KB
testcase_62 AC 172 ms
29,184 KB
testcase_63 AC 1 ms
6,944 KB
testcase_64 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nk = String::new();
    std::io::stdin().read_line(&mut nk).ok();
    let nk: Vec<usize> = nk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nk[0];
    let k = nk[1];
    let mut p = String::new();
    std::io::stdin().read_line(&mut p).ok();
    let p: Vec<usize> = p.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut addval = vec![vec![0usize; n]; 32];
    for i in 0..n {
        addval[0][i] = p[i];
    }
    for i in 0..=30 {
        for j in 0..n {
            addval[i+1][j] = addval[i][j] + addval[i][(j+addval[i][j])%n];
        }
    }
    let mut result = vec![0usize; n];
    for i in 0..n {
        let mut idx = i;
        for j in 0..=31 {
            if ((k >> j) & 1) == 1 {
                result[i] += addval[j][idx];
                idx += addval[j][idx];
                idx %= n;
            }
        }
    }
    for i in 0..n {
        println!("{}", result[i]+i+1);
    }
}
0