結果
問題 | No.201 yukicoderじゃんけん |
ユーザー |
|
提出日時 | 2020-02-23 10:30:48 |
言語 | Rust (1.83.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
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]); } } } }