結果

問題 No.218 経験値1.5倍
ユーザー regeregeregerege
提出日時 2017-05-03 14:48:44
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 5,729 ms
コンパイル使用メモリ 155,000 KB
実行使用メモリ 26,920 KB
最終ジャッジ日時 2023-10-12 07:57:29
合計ジャッジ時間 9,371 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 78 ms
22,680 KB
testcase_07 AC 79 ms
24,864 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 76 ms
22,572 KB
testcase_11 WA -
testcase_12 AC 77 ms
24,600 KB
testcase_13 WA -
testcase_14 AC 78 ms
22,712 KB
testcase_15 AC 78 ms
22,728 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 78 ms
22,696 KB
testcase_19 WA -
testcase_20 AC 78 ms
22,620 KB
testcase_21 AC 79 ms
26,724 KB
testcase_22 AC 78 ms
22,708 KB
testcase_23 AC 78 ms
20,576 KB
testcase_24 WA -
testcase_25 AC 78 ms
22,704 KB
testcase_26 WA -
testcase_27 AC 78 ms
22,664 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 77 ms
22,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = (A/B) * (2./3.)
let b = float(int(A/C))
if a <= b then "YES" else "NO"
|> printfn "%s"
0