結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nohopennohopen
提出日時 2019-06-16 16:59:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 417 ms / 3,000 ms
コード長 234 bytes
コンパイル時間 9,552 ms
コンパイル使用メモリ 185,224 KB
実行使用メモリ 46,316 KB
最終ジャッジ日時 2024-05-03 08:00:25
合計ジャッジ時間 18,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,476 KB
testcase_01 AC 340 ms
34,584 KB
testcase_02 AC 340 ms
34,484 KB
testcase_03 AC 344 ms
34,352 KB
testcase_04 AC 341 ms
34,608 KB
testcase_05 AC 346 ms
34,340 KB
testcase_06 AC 344 ms
33,860 KB
testcase_07 AC 344 ms
34,924 KB
testcase_08 AC 352 ms
37,224 KB
testcase_09 AC 364 ms
38,892 KB
testcase_10 AC 402 ms
45,164 KB
testcase_11 AC 400 ms
45,392 KB
testcase_12 AC 400 ms
45,680 KB
testcase_13 AC 403 ms
45,812 KB
testcase_14 AC 407 ms
45,168 KB
testcase_15 AC 413 ms
45,548 KB
testcase_16 AC 417 ms
46,316 KB
testcase_17 AC 340 ms
34,352 KB
testcase_18 AC 340 ms
34,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (254 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 sum (N: int64) =
  let rec loop (N: int64) (ans: int64) =
    if N <= (int64 0) then ans
    else loop (N-1L) (ans + (Console.ReadLine() |> int64))
  loop N 0L

let N = Console.ReadLine() |> int64
printfn "%d" (sum N)
0