結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-24 00:29:53
言語 F#
(F# 4.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 9,415 ms
コンパイル使用メモリ 184,080 KB
実行使用メモリ 61,444 KB
最終ジャッジ日時 2024-11-14 05:45:29
合計ジャッジ時間 17,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,704 KB
testcase_01 AC 335 ms
34,828 KB
testcase_02 AC 336 ms
34,580 KB
testcase_03 AC 338 ms
34,588 KB
testcase_04 AC 336 ms
34,408 KB
testcase_05 AC 336 ms
34,580 KB
testcase_06 AC 340 ms
35,192 KB
testcase_07 AC 340 ms
37,308 KB
testcase_08 AC 352 ms
44,544 KB
testcase_09 AC 361 ms
43,520 KB
testcase_10 AC 399 ms
57,096 KB
testcase_11 AC 402 ms
57,680 KB
testcase_12 AC 400 ms
58,028 KB
testcase_13 AC 400 ms
58,512 KB
testcase_14 AC 401 ms
58,996 KB
testcase_15 AC 404 ms
59,204 KB
testcase_16 AC 411 ms
61,444 KB
testcase_17 AC 337 ms
34,564 KB
testcase_18 AC 337 ms
34,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (549 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 int64
    |> Seq.sum
    |> printfn "%d"
0