結果

問題 No.218 経験値1.5倍
ユーザー noriocnorioc
提出日時 2024-09-03 10:51:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-09-03 10:51:53
合計ジャッジ時間 2,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,908 KB
testcase_01 AC 37 ms
52,212 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 37 ms
52,836 KB
testcase_04 AC 37 ms
52,528 KB
testcase_05 AC 37 ms
51,752 KB
testcase_06 AC 37 ms
52,364 KB
testcase_07 AC 37 ms
52,624 KB
testcase_08 AC 37 ms
52,620 KB
testcase_09 AC 38 ms
52,072 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
52,072 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
51,812 KB
testcase_18 WA -
testcase_19 AC 37 ms
53,280 KB
testcase_20 WA -
testcase_21 AC 37 ms
52,084 KB
testcase_22 AC 38 ms
52,568 KB
testcase_23 AC 37 ms
53,104 KB
testcase_24 AC 36 ms
52,760 KB
testcase_25 AC 36 ms
52,752 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,932 KB
testcase_28 WA -
testcase_29 AC 38 ms
53,352 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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