結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー taktak
提出日時 2018-04-17 17:31:32
言語 F#
(F# 4.0)
結果
AC  
実行時間 315 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 7,182 ms
コンパイル使用メモリ 186,512 KB
実行使用メモリ 34,992 KB
最終ジャッジ日時 2024-07-22 16:42:00
合計ジャッジ時間 16,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
34,868 KB
testcase_01 AC 300 ms
34,156 KB
testcase_02 AC 299 ms
34,744 KB
testcase_03 AC 301 ms
34,300 KB
testcase_04 AC 302 ms
34,604 KB
testcase_05 AC 300 ms
34,704 KB
testcase_06 AC 302 ms
34,868 KB
testcase_07 AC 302 ms
34,720 KB
testcase_08 AC 315 ms
34,264 KB
testcase_09 AC 308 ms
34,620 KB
testcase_10 AC 314 ms
34,324 KB
testcase_11 AC 304 ms
34,732 KB
testcase_12 AC 294 ms
34,716 KB
testcase_13 AC 300 ms
34,868 KB
testcase_14 AC 299 ms
34,720 KB
testcase_15 AC 305 ms
34,864 KB
testcase_16 AC 302 ms
34,992 KB
testcase_17 AC 306 ms
34,304 KB
testcase_18 AC 304 ms
34,732 KB
testcase_19 AC 299 ms
34,040 KB
testcase_20 AC 301 ms
34,608 KB
testcase_21 AC 304 ms
34,044 KB
testcase_22 AC 304 ms
34,600 KB
testcase_23 AC 306 ms
34,720 KB
testcase_24 AC 308 ms
34,796 KB
testcase_25 AC 304 ms
34,728 KB
testcase_26 AC 308 ms
34,864 KB
testcase_27 AC 305 ms
34,176 KB
testcase_28 AC 299 ms
34,608 KB
testcase_29 AC 298 ms
34,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (250 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 N = stdin.ReadLine() |> int
let A = Array.init N (fun _ -> stdin.ReadLine() |> decimal)
A |> Array.sum |> printfn "%.10f"
0