結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー keidenkeiden
提出日時 2024-09-19 08:29:40
言語 F#
(F# 4.0)
結果
AC  
実行時間 138 ms / 3,000 ms
コード長 165 bytes
コンパイル時間 7,937 ms
コンパイル使用メモリ 186,360 KB
実行使用メモリ 45,700 KB
最終ジャッジ日時 2024-09-19 08:30:03
合計ジャッジ時間 10,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
29,952 KB
testcase_01 AC 55 ms
29,944 KB
testcase_02 AC 56 ms
29,692 KB
testcase_03 AC 55 ms
29,824 KB
testcase_04 AC 56 ms
29,696 KB
testcase_05 AC 53 ms
29,696 KB
testcase_06 AC 54 ms
29,824 KB
testcase_07 AC 57 ms
31,232 KB
testcase_08 AC 64 ms
34,432 KB
testcase_09 AC 75 ms
36,860 KB
testcase_10 AC 116 ms
44,408 KB
testcase_11 AC 123 ms
44,400 KB
testcase_12 AC 122 ms
44,776 KB
testcase_13 AC 132 ms
44,780 KB
testcase_14 AC 130 ms
44,440 KB
testcase_15 AC 122 ms
44,820 KB
testcase_16 AC 138 ms
45,700 KB
testcase_17 AC 54 ms
29,952 KB
testcase_18 AC 55 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (220 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 yuki9009 : unit =
    let N = stdin.ReadLine() |> int
    [| for i=0 to N-1 do stdin.ReadLine() |> int64 |]
    |> Array.sum
    |> stdout.WriteLine
0