結果

問題 No.218 経験値1.5倍
ユーザー regeregeregerege
提出日時 2017-05-03 15:13:18
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 153,272 KB
実行使用メモリ 24,872 KB
最終ジャッジ日時 2023-10-12 07:58:45
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
22,632 KB
testcase_01 AC 78 ms
22,608 KB
testcase_02 AC 78 ms
22,644 KB
testcase_03 AC 78 ms
24,664 KB
testcase_04 AC 78 ms
22,628 KB
testcase_05 AC 78 ms
22,652 KB
testcase_06 AC 79 ms
22,668 KB
testcase_07 AC 79 ms
22,804 KB
testcase_08 AC 78 ms
20,704 KB
testcase_09 AC 78 ms
22,684 KB
testcase_10 AC 77 ms
22,700 KB
testcase_11 AC 78 ms
22,552 KB
testcase_12 AC 77 ms
22,744 KB
testcase_13 AC 79 ms
24,632 KB
testcase_14 AC 78 ms
22,752 KB
testcase_15 WA -
testcase_16 AC 79 ms
24,688 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 78 ms
24,628 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 78 ms
22,724 KB
testcase_25 WA -
testcase_26 AC 79 ms
22,652 KB
testcase_27 WA -
testcase_28 AC 77 ms
20,608 KB
testcase_29 AC 80 ms
22,712 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let R() = stdin.ReadLine() |> float
let (A,B,C) = R(),R(),R()
let a = ceil(A/B)*(2./3.)
if A <= a*C then "YES" else "NO"
|> printfn "%s"
0