結果

問題 No.904 サメトロ
ユーザー tonyu0
提出日時 2020-03-15 22:45:34
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 13,333 ms
コンパイル使用メモリ 377,912 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 03:10:49
合計ジャッジ時間 14,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 14
権限があれば一括ダウンロードができます

ソースコード

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 {
        suma ^= sumb;
        sumb ^= suma;
        suma ^= sumb;
    }
    println!("{}", suma + 1);
}
0