結果

問題 No.218 経験値1.5倍
ユーザー regeregeregerege
提出日時 2017-05-03 15:26:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 5,669 ms
コンパイル使用メモリ 155,176 KB
実行使用メモリ 24,748 KB
最終ジャッジ日時 2023-08-28 14:33:05
合計ジャッジ時間 7,840 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
24,596 KB
testcase_01 AC 76 ms
24,748 KB
testcase_02 AC 76 ms
24,576 KB
testcase_03 AC 75 ms
20,500 KB
testcase_04 AC 77 ms
24,648 KB
testcase_05 AC 75 ms
22,552 KB
testcase_06 AC 77 ms
22,564 KB
testcase_07 AC 77 ms
24,632 KB
testcase_08 AC 77 ms
20,712 KB
testcase_09 AC 79 ms
22,752 KB
testcase_10 AC 77 ms
22,560 KB
testcase_11 AC 76 ms
24,596 KB
testcase_12 AC 77 ms
22,548 KB
testcase_13 AC 76 ms
22,660 KB
testcase_14 AC 77 ms
24,632 KB
testcase_15 AC 78 ms
24,580 KB
testcase_16 AC 77 ms
20,512 KB
testcase_17 AC 76 ms
22,592 KB
testcase_18 AC 76 ms
22,552 KB
testcase_19 AC 76 ms
24,604 KB
testcase_20 AC 77 ms
24,584 KB
testcase_21 AC 79 ms
24,656 KB
testcase_22 AC 76 ms
22,492 KB
testcase_23 AC 76 ms
20,496 KB
testcase_24 AC 76 ms
22,544 KB
testcase_25 AC 76 ms
22,660 KB
testcase_26 AC 77 ms
22,488 KB
testcase_27 AC 77 ms
22,552 KB
testcase_28 AC 77 ms
22,660 KB
testcase_29 AC 76 ms
24,684 KB
testcase_30 AC 76 ms
20,716 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 = floor(ceil(A/B)/3.*2.)
if A <= a*C then "YES" else "NO"
|> printfn "%s"
0