結果
| 問題 | No.2736 About half |
| コンテスト | |
| ユーザー |
northward
|
| 提出日時 | 2024-04-27 01:59:04 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 15,360 ms |
| コンパイル使用メモリ | 400,944 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-14 18:38:45 |
| 合計ジャッジ時間 | 16,408 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 7 |
ソースコード
#![allow(non_snake_case, unused_imports)]
use proconio::{input, marker::*};
fn main() {
input! {
A: usize, B: usize,
}
if A < 2 * B || B < 2 * A {
println!("Yes");
} else {
println!("No");
}
}
northward