結果

問題 No.904 サメトロ
ユーザー tonyu0
提出日時 2020-03-15 22:28:18
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 19,005 ms
コンパイル使用メモリ 382,740 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 02:05:37
合計ジャッジ時間 18,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 WA * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();


    let mut suma: i64 = 0;
    let mut sumb: i64 = 0;
    for _ in 0..n-1 {
        suma += itr.next().unwrap().parse::<i64>().unwrap();
        sumb += itr.next().unwrap().parse::<i64>().unwrap();
    }
    if suma == sumb {
        println!("{}", suma + 1);
    } else {
        println!("{}", (suma - sumb).abs());
    }
}
0