結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー keidenkeiden
提出日時 2024-09-12 21:20:34
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 35,120 KB
最終ジャッジ日時 2024-09-12 21:20:39
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
28,288 KB
testcase_01 AC 86 ms
28,544 KB
testcase_02 AC 87 ms
28,416 KB
testcase_03 AC 91 ms
28,544 KB
testcase_04 AC 86 ms
28,288 KB
testcase_05 AC 86 ms
28,544 KB
testcase_06 AC 88 ms
28,288 KB
testcase_07 AC 119 ms
30,564 KB
testcase_08 AC 129 ms
33,840 KB
testcase_09 AC 158 ms
34,956 KB
testcase_10 AC 338 ms
34,932 KB
testcase_11 AC 343 ms
34,988 KB
testcase_12 AC 373 ms
35,004 KB
testcase_13 AC 348 ms
34,844 KB
testcase_14 AC 355 ms
34,928 KB
testcase_15 AC 384 ms
34,792 KB
testcase_16 AC 390 ms
35,120 KB
testcase_17 AC 86 ms
28,288 KB
testcase_18 AC 86 ms
28,288 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