結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-24 00:24:32
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 111 bytes
コンパイル時間 10,323 ms
コンパイル使用メモリ 188,460 KB
実行使用メモリ 61,444 KB
最終ジャッジ日時 2024-11-14 05:45:10
合計ジャッジ時間 18,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
34,572 KB
testcase_01 AC 339 ms
34,188 KB
testcase_02 AC 339 ms
34,960 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 362 ms
43,628 KB
testcase_10 AC 406 ms
57,348 KB
testcase_11 AC 403 ms
57,676 KB
testcase_12 AC 402 ms
58,044 KB
testcase_13 AC 404 ms
58,648 KB
testcase_14 AC 407 ms
58,864 KB
testcase_15 AC 408 ms
59,208 KB
testcase_16 AC 415 ms
61,444 KB
testcase_17 AC 341 ms
34,960 KB
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (437 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 #

stdin.ReadLine () |> ignore
(stdin.ReadLine ()).Split ' '
    |> Seq.map int
    |> Seq.sum
    |> printfn "%d"
0