結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー keidenkeiden
提出日時 2024-09-19 08:22:49
言語 F#
(F# 4.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 7,080 ms
コンパイル使用メモリ 185,368 KB
実行使用メモリ 59,856 KB
最終ジャッジ日時 2024-09-19 08:22:59
合計ジャッジ時間 9,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
29,184 KB
testcase_01 AC 50 ms
29,184 KB
testcase_02 AC 49 ms
29,312 KB
testcase_03 AC 49 ms
29,056 KB
testcase_04 AC 49 ms
29,184 KB
testcase_05 AC 50 ms
29,312 KB
testcase_06 AC 55 ms
29,568 KB
testcase_07 AC 55 ms
31,488 KB
testcase_08 AC 68 ms
38,912 KB
testcase_09 AC 75 ms
38,912 KB
testcase_10 AC 111 ms
54,528 KB
testcase_11 AC 118 ms
55,232 KB
testcase_12 AC 119 ms
55,704 KB
testcase_13 AC 114 ms
56,192 KB
testcase_14 AC 113 ms
56,564 KB
testcase_15 AC 114 ms
57,088 KB
testcase_16 AC 120 ms
59,856 KB
testcase_17 AC 54 ms
29,184 KB
testcase_18 AC 56 ms
29,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (224 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 #

open System

let yuki9008 : unit = 
    let _ = stdin.ReadLine() |> int
    Console.ReadLine().Split(" ")
    |> Array.map int64
    |> Array.sum
    |> stdout.WriteLine
0