結果

問題 No.2736 About half
ユーザー tassei903tassei903
提出日時 2024-04-17 03:18:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-04-17 03:18:11
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,776 KB
testcase_01 AC 33 ms
52,988 KB
testcase_02 AC 34 ms
53,360 KB
testcase_03 AC 33 ms
52,836 KB
testcase_04 AC 36 ms
53,016 KB
testcase_05 AC 34 ms
53,156 KB
testcase_06 AC 34 ms
53,064 KB
testcase_07 AC 33 ms
52,400 KB
testcase_08 AC 32 ms
53,360 KB
testcase_09 AC 36 ms
52,708 KB
testcase_10 AC 34 ms
52,868 KB
testcase_11 AC 33 ms
52,076 KB
testcase_12 AC 34 ms
53,016 KB
testcase_13 AC 32 ms
52,616 KB
testcase_14 AC 35 ms
52,088 KB
testcase_15 AC 40 ms
52,124 KB
testcase_16 AC 31 ms
52,880 KB
testcase_17 AC 31 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

A, B = na()
if A > 2 * B or B > 2 * A:
    print("No")
else:
    print("Yes")
0