結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 WA * 17 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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/
ソースコード
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"