結果

問題 No.201 yukicoderじゃんけん
ユーザー phsplsphspls
提出日時 2020-02-23 10:30:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,059 bytes
コンパイル時間 19,411 ms
コンパイル使用メモリ 378,700 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-10 01:37:23
合計ジャッジ時間 15,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut spx1 = String::new();
    std::io::stdin().read_line(&mut spx1).ok();
    let spx1: Vec<&str> = spx1.trim().split_whitespace().take(2).collect();
    let mut spx2 = String::new();
    std::io::stdin().read_line(&mut spx2).ok();
    let spx2: Vec<&str> = spx2.trim().split_whitespace().take(2).collect();

    let is_len_equal: bool = spx1[1].len() == spx2[1].len();
    let is_equal: bool = is_len_equal && !spx1[1].chars().zip(spx2[1].chars()).any(|pair| pair.0 != pair.1);
    if is_equal {
        println!("-1");
    } else {
        if is_len_equal {
            let bigthan2: bool = spx1[1].chars().zip(spx2[1].chars()).find(|pair| pair.0 != pair.1).map(|pair| pair.0 > pair.1).unwrap();
            if bigthan2 {
                println!("{}", spx1[0]);
            } else {
                println!("{}", spx2[0]);
            }
        } else {
            if spx1[1].len() < spx2[1].len() {
                println!("{}", spx2[0]);
            } else {
                println!("{}", spx1[0]);
            }
        }
    }
}
0