結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-24 00:52:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 425 ms / 3,000 ms
コード長 119 bytes
コンパイル時間 14,580 ms
コンパイル使用メモリ 184,248 KB
実行使用メモリ 46,072 KB
最終ジャッジ日時 2024-06-07 13:31:15
合計ジャッジ時間 16,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
34,600 KB
testcase_01 AC 326 ms
34,948 KB
testcase_02 AC 322 ms
34,736 KB
testcase_03 AC 313 ms
34,980 KB
testcase_04 AC 322 ms
34,608 KB
testcase_05 AC 317 ms
34,980 KB
testcase_06 AC 321 ms
34,784 KB
testcase_07 AC 335 ms
35,152 KB
testcase_08 AC 341 ms
37,880 KB
testcase_09 AC 345 ms
38,692 KB
testcase_10 AC 411 ms
44,908 KB
testcase_11 AC 405 ms
45,816 KB
testcase_12 AC 425 ms
45,588 KB
testcase_13 AC 412 ms
45,944 KB
testcase_14 AC 418 ms
45,000 KB
testcase_15 AC 415 ms
45,200 KB
testcase_16 AC 425 ms
46,072 KB
testcase_17 AC 322 ms
34,988 KB
testcase_18 AC 321 ms
34,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (333 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 #

let n = stdin.ReadLine () |> int
seq { for _ in 1..n -> stdin.ReadLine () |> int64 }
    |> Seq.sum
    |> printfn "%d"
0