結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー taktak
提出日時 2018-04-17 17:31:32
言語 F#
(F# 4.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 154,916 KB
実行使用メモリ 25,120 KB
最終ジャッジ日時 2023-09-29 22:43:22
合計ジャッジ時間 6,524 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
24,944 KB
testcase_01 AC 83 ms
22,836 KB
testcase_02 AC 81 ms
24,940 KB
testcase_03 AC 84 ms
23,044 KB
testcase_04 AC 84 ms
22,848 KB
testcase_05 AC 83 ms
25,120 KB
testcase_06 AC 82 ms
24,976 KB
testcase_07 AC 83 ms
22,872 KB
testcase_08 AC 86 ms
24,968 KB
testcase_09 AC 84 ms
23,060 KB
testcase_10 AC 85 ms
25,060 KB
testcase_11 AC 84 ms
22,896 KB
testcase_12 AC 83 ms
25,016 KB
testcase_13 AC 85 ms
22,896 KB
testcase_14 AC 85 ms
23,012 KB
testcase_15 AC 83 ms
22,900 KB
testcase_16 AC 84 ms
22,876 KB
testcase_17 AC 84 ms
22,904 KB
testcase_18 AC 85 ms
20,864 KB
testcase_19 AC 86 ms
25,012 KB
testcase_20 AC 85 ms
24,924 KB
testcase_21 AC 85 ms
25,040 KB
testcase_22 AC 83 ms
23,000 KB
testcase_23 AC 85 ms
22,876 KB
testcase_24 AC 83 ms
22,992 KB
testcase_25 AC 85 ms
22,936 KB
testcase_26 AC 84 ms
23,028 KB
testcase_27 AC 85 ms
23,004 KB
testcase_28 AC 83 ms
22,932 KB
testcase_29 AC 84 ms
25,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let N = stdin.ReadLine() |> int
let A = Array.init N (fun _ -> stdin.ReadLine() |> decimal)
A |> Array.sum |> printfn "%.10f"
0