結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー keidenkeiden
提出日時 2024-09-12 21:21:27
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 425 ms / 3,000 ms
コード長 256 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-09-12 21:21:52
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
28,416 KB
testcase_01 AC 87 ms
28,416 KB
testcase_02 AC 92 ms
28,288 KB
testcase_03 AC 87 ms
28,288 KB
testcase_04 AC 88 ms
28,416 KB
testcase_05 AC 89 ms
28,288 KB
testcase_06 AC 90 ms
28,416 KB
testcase_07 AC 97 ms
28,544 KB
testcase_08 AC 135 ms
34,048 KB
testcase_09 AC 193 ms
34,816 KB
testcase_10 AC 355 ms
34,816 KB
testcase_11 AC 352 ms
35,072 KB
testcase_12 AC 368 ms
34,952 KB
testcase_13 AC 360 ms
34,944 KB
testcase_14 AC 357 ms
35,072 KB
testcase_15 AC 365 ms
35,072 KB
testcase_16 AC 425 ms
35,072 KB
testcase_17 AC 90 ms
28,416 KB
testcase_18 AC 90 ms
28,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(import
  (scheme base)
  (scheme read)
  (scheme write)
)

(define yuki9008
  (let loop
    (
      (n (read))
      (s 0)
    )
    (if (zero? n)
      (begin
        (write s)
        (display "\n")
      )
      (loop (- n 1) (+ s (read)))
    )
  )
)
0