結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー akakimidoriakakimidori
提出日時 2021-01-22 22:07:22
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 2,116 bytes
コンパイル時間 12,900 ms
コンパイル使用メモリ 377,876 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-06-08 15:05:24
合計ジャッジ時間 27,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 214 ms
9,352 KB
testcase_04 AC 87 ms
9,352 KB
testcase_05 AC 75 ms
9,344 KB
testcase_06 AC 230 ms
9,344 KB
testcase_07 AC 114 ms
12,544 KB
testcase_08 AC 117 ms
12,544 KB
testcase_09 AC 32 ms
5,376 KB
testcase_10 AC 32 ms
5,376 KB
testcase_11 AC 153 ms
15,104 KB
testcase_12 AC 150 ms
15,104 KB
testcase_13 AC 95 ms
10,392 KB
testcase_14 AC 94 ms
10,392 KB
testcase_15 AC 89 ms
9,216 KB
testcase_16 AC 91 ms
9,344 KB
testcase_17 AC 164 ms
15,616 KB
testcase_18 AC 163 ms
15,616 KB
testcase_19 AC 138 ms
13,952 KB
testcase_20 AC 137 ms
13,824 KB
testcase_21 AC 231 ms
14,720 KB
testcase_22 AC 156 ms
14,848 KB
testcase_23 AC 99 ms
11,008 KB
testcase_24 AC 151 ms
11,008 KB
testcase_25 AC 20 ms
5,376 KB
testcase_26 AC 15 ms
5,376 KB
testcase_27 AC 52 ms
6,528 KB
testcase_28 AC 100 ms
6,400 KB
testcase_29 AC 64 ms
7,808 KB
testcase_30 AC 117 ms
7,680 KB
testcase_31 AC 149 ms
9,600 KB
testcase_32 AC 86 ms
9,728 KB
testcase_33 AC 68 ms
7,552 KB
testcase_34 AC 63 ms
7,552 KB
testcase_35 AC 92 ms
9,476 KB
testcase_36 AC 84 ms
9,348 KB
testcase_37 AC 46 ms
5,376 KB
testcase_38 AC 17 ms
5,376 KB
testcase_39 AC 16 ms
5,376 KB
testcase_40 AC 14 ms
5,376 KB
testcase_41 AC 61 ms
5,376 KB
testcase_42 AC 30 ms
5,376 KB
testcase_43 AC 73 ms
5,376 KB
testcase_44 AC 287 ms
15,872 KB
testcase_45 AC 90 ms
7,808 KB
testcase_46 AC 24 ms
5,376 KB
testcase_47 AC 120 ms
11,520 KB
testcase_48 AC 104 ms
11,392 KB
testcase_49 AC 105 ms
11,520 KB
testcase_50 AC 82 ms
9,268 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 142 ms
14,464 KB
testcase_53 AC 159 ms
16,512 KB
testcase_54 AC 171 ms
16,512 KB
testcase_55 AC 167 ms
16,512 KB
testcase_56 AC 171 ms
16,512 KB
testcase_57 AC 174 ms
16,512 KB
testcase_58 AC 173 ms
16,512 KB
testcase_59 AC 168 ms
16,512 KB
testcase_60 AC 163 ms
16,512 KB
testcase_61 AC 154 ms
16,512 KB
testcase_62 AC 170 ms
16,512 KB
testcase_63 AC 167 ms
16,512 KB
testcase_64 AC 169 ms
16,512 KB
testcase_65 AC 169 ms
16,384 KB
testcase_66 AC 167 ms
16,512 KB
testcase_67 AC 179 ms
16,512 KB
testcase_68 AC 168 ms
16,512 KB
testcase_69 AC 154 ms
16,512 KB
testcase_70 AC 162 ms
16,384 KB
testcase_71 AC 153 ms
16,384 KB
testcase_72 AC 184 ms
16,384 KB
testcase_73 AC 155 ms
16,512 KB
testcase_74 AC 151 ms
16,512 KB
testcase_75 AC 151 ms
16,640 KB
testcase_76 AC 151 ms
16,512 KB
testcase_77 AC 160 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin input macro ----------
// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, bytes) => {
        read_value!($iter, String).bytes().collect::<Vec<u8>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
// ---------- end input macro ----------

fn pow_mod(r: u64, mut n: u64, m: u64) -> u64 {
    let mut t = 1 % m;
    let mut s = r % m;
    while n > 0 {
        if n & 1 == 1 {
            t = t * s % m;
        }
        s = s * s % m;
        n >>= 1;
    }
    t
}

fn run() {
    input! {
        n: usize,
        k: u64,
        m: u64,
        p: [[u64; n]; 4],
    }
    let mut p = p;
    p.iter_mut().for_each(|p| p.sort());
    let mut ans = 0;
    for _ in 0..n {
        let mut a = [0u64; 4];
        for (a, p) in a.iter_mut().zip(p.iter_mut()) {
            *a = p.pop().unwrap();
        }
        a.sort();
        ans += pow_mod(a[3] - a[0], k, m);
    }
    ans %= m;
    println!("{}", ans);
}

fn main() {
    run();
}
0