結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-24 00:24:32
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 111 bytes
コンパイル時間 9,986 ms
コンパイル使用メモリ 183,944 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-04-26 16:28:54
合計ジャッジ時間 18,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
34,956 KB
testcase_01 AC 337 ms
34,700 KB
testcase_02 AC 343 ms
34,956 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 360 ms
43,776 KB
testcase_10 AC 407 ms
57,344 KB
testcase_11 AC 399 ms
57,708 KB
testcase_12 AC 402 ms
58,220 KB
testcase_13 AC 402 ms
58,752 KB
testcase_14 AC 404 ms
58,844 KB
testcase_15 AC 411 ms
59,632 KB
testcase_16 AC 415 ms
61,440 KB
testcase_17 AC 347 ms
34,828 KB
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (324 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