結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,444 KB
testcase_01 AC 341 ms
34,224 KB
testcase_02 AC 339 ms
34,612 KB
testcase_03 AC 342 ms
34,612 KB
testcase_04 AC 341 ms
34,484 KB
testcase_05 AC 338 ms
34,448 KB
testcase_06 AC 336 ms
34,480 KB
testcase_07 AC 339 ms
34,932 KB
testcase_08 AC 349 ms
37,360 KB
testcase_09 AC 357 ms
38,768 KB
testcase_10 AC 398 ms
44,916 KB
testcase_11 AC 402 ms
45,424 KB
testcase_12 AC 401 ms
45,676 KB
testcase_13 AC 400 ms
46,188 KB
testcase_14 AC 403 ms
45,224 KB
testcase_15 AC 404 ms
45,548 KB
testcase_16 AC 410 ms
46,444 KB
testcase_17 AC 339 ms
34,604 KB
testcase_18 AC 340 ms
34,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (275 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