結果

問題 No.218 経験値1.5倍
ユーザー regeregeregerege
提出日時 2017-05-03 14:48:44
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 12,062 ms
コンパイル使用メモリ 188,436 KB
実行使用メモリ 32,996 KB
最終ジャッジ日時 2024-09-14 07:05:36
合計ジャッジ時間 16,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 81 ms
30,848 KB
testcase_07 AC 81 ms
30,592 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 83 ms
30,720 KB
testcase_11 WA -
testcase_12 AC 82 ms
30,720 KB
testcase_13 WA -
testcase_14 AC 83 ms
30,720 KB
testcase_15 AC 82 ms
30,592 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 83 ms
30,336 KB
testcase_19 WA -
testcase_20 AC 83 ms
30,720 KB
testcase_21 AC 84 ms
30,464 KB
testcase_22 AC 83 ms
30,592 KB
testcase_23 AC 82 ms
30,720 KB
testcase_24 WA -
testcase_25 AC 82 ms
30,848 KB
testcase_26 WA -
testcase_27 AC 82 ms
30,976 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 81 ms
31,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (380 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 = (A/B) * (2./3.)
let b = float(int(A/C))
if a <= b then "YES" else "NO"
|> printfn "%s"
0