結果

問題 No.218 経験値1.5倍
ユーザー regeregeregerege
提出日時 2017-05-03 15:13:18
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 6,947 ms
コンパイル使用メモリ 187,200 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-09-14 07:06:53
合計ジャッジ時間 10,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
30,708 KB
testcase_01 AC 83 ms
30,848 KB
testcase_02 AC 80 ms
30,720 KB
testcase_03 AC 82 ms
30,720 KB
testcase_04 AC 81 ms
30,848 KB
testcase_05 AC 81 ms
30,720 KB
testcase_06 AC 81 ms
30,848 KB
testcase_07 AC 80 ms
30,720 KB
testcase_08 AC 80 ms
30,968 KB
testcase_09 AC 80 ms
30,848 KB
testcase_10 AC 80 ms
30,720 KB
testcase_11 AC 82 ms
30,464 KB
testcase_12 AC 81 ms
30,848 KB
testcase_13 AC 83 ms
30,592 KB
testcase_14 AC 83 ms
30,720 KB
testcase_15 WA -
testcase_16 AC 82 ms
30,592 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 80 ms
30,848 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 80 ms
30,976 KB
testcase_25 WA -
testcase_26 AC 81 ms
30,464 KB
testcase_27 WA -
testcase_28 AC 80 ms
30,848 KB
testcase_29 AC 80 ms
30,592 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (238 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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