結果

問題 No.445 得点
ユーザー taktak
提出日時 2018-09-09 14:34:14
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 15,738 ms
コンパイル使用メモリ 186,264 KB
実行使用メモリ 29,724 KB
最終ジャッジ日時 2024-06-02 11:27:54
合計ジャッジ時間 17,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
27,876 KB
testcase_01 AC 61 ms
27,648 KB
testcase_02 AC 61 ms
27,648 KB
testcase_03 AC 59 ms
27,876 KB
testcase_04 AC 57 ms
27,648 KB
testcase_05 AC 58 ms
27,644 KB
testcase_06 AC 57 ms
27,904 KB
testcase_07 AC 59 ms
27,896 KB
testcase_08 AC 58 ms
27,776 KB
testcase_09 AC 58 ms
27,904 KB
testcase_10 AC 57 ms
27,520 KB
testcase_11 AC 55 ms
27,520 KB
testcase_12 AC 55 ms
27,776 KB
testcase_13 AC 55 ms
27,648 KB
testcase_14 AC 56 ms
27,648 KB
testcase_15 AC 55 ms
27,884 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
27,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (362 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()

let f n k = 
    let a = int(50. * n) 
    let b = int((50. * n)/(0.8 + 0.2 * k))
    a + b

let a,b = let t = R().Split() |> Array.map float in t.[0], t.[1]

f a b |> stdout.WriteLine
0