結果
問題 | No.863 計算量 |
ユーザー |
![]() |
提出日時 | 2022-12-28 15:48:56 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 290 bytes |
コンパイル時間 | 15,157 ms |
コンパイル使用メモリ | 377,804 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 16:44:09 |
合計ジャッジ時間 | 13,967 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
fn main() {let mut xx = String::new();std::io::Read::read_to_string(&mut std::io::stdin(), &mut xx).ok();let xx: Vec<u64> = xx.split_whitespace().flat_map(str::parse).collect();if xx[1] < 100 * xx[0] {println!("1");} else {println!("2");}}