結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
tropolone
|
| 提出日時 | 2022-08-17 08:57:47 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 344 bytes |
| コンパイル時間 | 13,605 ms |
| コンパイル使用メモリ | 377,836 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-04 07:42:19 |
| 合計ジャッジ時間 | 14,022 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 2 RE * 52 |
ソースコード
fn main() {
use std::io;
let mut buf = String::new();
io::stdin().read_line(&mut buf).expect("?");
let st = buf.split_whitespace()
.map(|x| x.parse())
.collect::<Result<Vec<i32>,_>>()
.unwrap();
let (s, t) = (st[0], st[1]);
println!("{}", if s < t {"Yes"} else {"No"});
}
tropolone