結果

問題 No.218 経験値1.5倍
ユーザー a_tena_ten
提出日時 2016-03-28 16:11:22
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-04-10 05:00:17
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
8,192 KB
testcase_01 AC 21 ms
8,192 KB
testcase_02 AC 22 ms
8,192 KB
testcase_03 AC 22 ms
8,192 KB
testcase_04 AC 21 ms
8,192 KB
testcase_05 AC 22 ms
8,192 KB
testcase_06 AC 21 ms
8,192 KB
testcase_07 AC 22 ms
8,192 KB
testcase_08 AC 21 ms
8,192 KB
testcase_09 AC 21 ms
8,192 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 22 ms
8,064 KB
testcase_14 AC 21 ms
8,192 KB
testcase_15 AC 25 ms
8,320 KB
testcase_16 WA -
testcase_17 AC 21 ms
8,320 KB
testcase_18 AC 21 ms
8,192 KB
testcase_19 AC 21 ms
8,192 KB
testcase_20 AC 20 ms
8,192 KB
testcase_21 AC 21 ms
8,192 KB
testcase_22 AC 22 ms
8,320 KB
testcase_23 AC 22 ms
8,320 KB
testcase_24 WA -
testcase_25 AC 21 ms
8,192 KB
testcase_26 WA -
testcase_27 AC 21 ms
8,192 KB
testcase_28 WA -
testcase_29 AC 21 ms
8,192 KB
testcase_30 AC 22 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

from fractions import Fraction
from math import ceil

a=input()
b=input()
c=float(input())

nml_cost=a//b
nml_cost_rate=nml_cost*Fraction(2,3)
spe_cost=ceil(a/c)

if nml_cost_rate < spe_cost:
	print 'NO'
else:
	print 'YES'
0