結果

問題 No.218 経験値1.5倍
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-02 21:06:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 71,248 KB
最終ジャッジ日時 2023-10-14 20:54:11
合計ジャッジ時間 5,232 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,024 KB
testcase_01 AC 77 ms
71,088 KB
testcase_02 AC 77 ms
71,064 KB
testcase_03 AC 77 ms
71,020 KB
testcase_04 AC 79 ms
71,020 KB
testcase_05 AC 78 ms
70,936 KB
testcase_06 AC 78 ms
71,236 KB
testcase_07 AC 77 ms
70,788 KB
testcase_08 AC 77 ms
71,068 KB
testcase_09 AC 76 ms
71,032 KB
testcase_10 AC 76 ms
71,008 KB
testcase_11 AC 75 ms
71,008 KB
testcase_12 AC 75 ms
70,936 KB
testcase_13 AC 76 ms
71,172 KB
testcase_14 AC 78 ms
71,048 KB
testcase_15 AC 77 ms
71,172 KB
testcase_16 AC 77 ms
70,932 KB
testcase_17 AC 77 ms
71,112 KB
testcase_18 AC 76 ms
71,040 KB
testcase_19 AC 76 ms
71,092 KB
testcase_20 AC 76 ms
70,948 KB
testcase_21 AC 77 ms
70,880 KB
testcase_22 AC 77 ms
71,076 KB
testcase_23 AC 77 ms
70,932 KB
testcase_24 AC 77 ms
70,984 KB
testcase_25 AC 76 ms
71,104 KB
testcase_26 AC 76 ms
71,176 KB
testcase_27 AC 75 ms
71,232 KB
testcase_28 AC 76 ms
70,988 KB
testcase_29 AC 75 ms
71,248 KB
testcase_30 AC 74 ms
71,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())

x = (a+b-1)//b
y = (a+c-1)//c
if 3*y <= 2*x:
    print('YES')
else:
    print('NO')
0