結果
問題 |
No.2736 About half
|
ユーザー |
|
提出日時 | 2024-04-20 16:41:23 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 297 bytes |
コンパイル時間 | 3,182 ms |
コンパイル使用メモリ | 243,492 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 12:30:00 |
合計ジャッジ時間 | 3,978 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 7 WA * 8 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using llu = long long unsigned; // メイン関数 int main() { int a, b; cin >> a >> b; if ((2*a > b) || (2*b > a)) { cout << "No" << endl; } else { cout << "Yes" << endl; } return 0; }