結果

問題 No.49 算数の宿題
ユーザー keidenkeiden
提出日時 2024-09-13 18:06:18
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 802 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-09-13 18:06:21
合計ジャッジ時間 2,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
28,416 KB
testcase_01 AC 88 ms
28,288 KB
testcase_02 AC 85 ms
28,288 KB
testcase_03 AC 88 ms
28,416 KB
testcase_04 AC 88 ms
28,416 KB
testcase_05 AC 88 ms
28,416 KB
testcase_06 AC 89 ms
28,288 KB
testcase_07 AC 88 ms
28,416 KB
testcase_08 AC 86 ms
28,288 KB
testcase_09 AC 84 ms
28,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


(define (string-to-number c) (- (char->integer c) (char->integer #\0)))

(define (eval-string s)
  (let loop
    (
      (chars (string->list s))
      (r 0)
      (o 0)
      (l 0)
    )
    (cond
      ((null? chars)
        (if (= l 0)
          (+ r o)
          (* r o)))
      ((or (char=? (car chars) #\*) (char=? (car chars) #\+))
        (let
          (
            (new-r (if (= l 0) (+ r o) (* r o)))
            (new-l (if (char=? (car chars) #\*) 0 1))
          )
          (loop (cdr chars) new-r 0 new-l)))
      (else
        (let
          (
            (new-o (+ (* o 10) (string-to-number (car chars))))
          )
          (loop (cdr chars) r new-o l))))))

(define s (read-line))
(display (eval-string s))
(newline)
0