結果

問題 No.1343 Dividing Digit
ユーザー fukafukatanifukafukatani
提出日時 2021-01-24 11:49:24
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 11,652 ms
コンパイル使用メモリ 386,328 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 15:11:27
合計ジャッジ時間 12,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `n`
 --> src/main.rs:3:10
  |
3 |     let (n, k) = (v[0], v[1] as i64);
  |          ^ help: if this is intentional, prefix it with an underscore: `_n`
  |
  = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

fn main() {
    let v = read_vec::<usize>();
    let (n, k) = (v[0], v[1] as i64);
    let a = read_vec::<i64>();
    let sum_a = a.iter().sum::<i64>();

    let mut ans = 0;
    for anum in a {
        ans *= k;
        ans += anum;
        ans %= sum_a;
    }
    println!("{}", ans);
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}
0