結果
問題 |
No.2736 About half
|
ユーザー |
|
提出日時 | 2024-04-20 10:18:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 104 bytes |
コンパイル時間 | 323 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-12 05:48:12 |
合計ジャッジ時間 | 1,495 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 15 |
ソースコード
a = int(input()) b = int(input()) if int(a/b) == 2 or int(b/a) == 2: print("Yes") else: print("No")