結果

問題 No.218 経験値1.5倍
ユーザー roiti46roiti46
提出日時 2015-05-29 22:22:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,208 KB
最終ジャッジ日時 2023-09-20 16:07:32
合計ジャッジ時間 1,587 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,080 KB
testcase_01 AC 12 ms
6,052 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 12 ms
5,952 KB
testcase_04 AC 11 ms
6,148 KB
testcase_05 AC 11 ms
6,152 KB
testcase_06 AC 11 ms
6,060 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 11 ms
6,136 KB
testcase_11 AC 11 ms
6,148 KB
testcase_12 AC 11 ms
6,032 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 11 ms
5,948 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 11 ms
5,992 KB
testcase_25 WA -
testcase_26 AC 11 ms
6,032 KB
testcase_27 WA -
testcase_28 AC 11 ms
5,960 KB
testcase_29 AC 11 ms
5,948 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = input(), input(), input()
print "YES" if 2 * b * c >= 3 * a else "NO" 
0