結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,024 KB
testcase_01 AC 336 ms
34,280 KB
testcase_02 AC 339 ms
34,704 KB
testcase_03 AC 342 ms
34,960 KB
testcase_04 AC 338 ms
34,700 KB
testcase_05 AC 340 ms
35,092 KB
testcase_06 AC 341 ms
35,184 KB
testcase_07 AC 345 ms
37,440 KB
testcase_08 AC 356 ms
44,392 KB
testcase_09 AC 369 ms
43,648 KB
testcase_10 AC 400 ms
57,088 KB
testcase_11 AC 404 ms
57,708 KB
testcase_12 AC 400 ms
57,984 KB
testcase_13 AC 404 ms
58,612 KB
testcase_14 AC 404 ms
58,752 KB
testcase_15 AC 408 ms
59,392 KB
testcase_16 AC 411 ms
61,568 KB
testcase_17 AC 336 ms
34,424 KB
testcase_18 AC 337 ms
34,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (392 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