結果
| 問題 | No.2736 About half |
| コンテスト | |
| ユーザー |
sato
|
| 提出日時 | 2024-04-20 14:55:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 528 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,616 KB |
| 最終ジャッジ日時 | 2026-04-29 00:18:07 |
| 合計ジャッジ時間 | 4,428 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 15 |
ソースコード
a,b = map(int,input().split(' '))
if a>2*b or 2*a<b:
print('Yes')
else:
print('No')
sato