結果
問題 | No.49 算数の宿題 |
ユーザー | MiyamonY |
提出日時 | 2019-09-06 15:27:12 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 767 bytes |
コンパイル時間 | 34 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-06-02 07:26:04 |
合計ジャッジ時間 | 1,350 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,536 KB |
testcase_01 | AC | 28 ms
17,664 KB |
testcase_02 | AC | 29 ms
17,664 KB |
testcase_03 | AC | 34 ms
17,920 KB |
testcase_04 | AC | 27 ms
17,792 KB |
testcase_05 | AC | 27 ms
17,664 KB |
testcase_06 | AC | 28 ms
17,664 KB |
testcase_07 | AC | 27 ms
17,664 KB |
testcase_08 | AC | 26 ms
17,792 KB |
testcase_09 | AC | 27 ms
17,664 KB |
ソースコード
(use data.queue) (let ((s (read-line))) (print (let loop ((chars (string->list s)) (stack (make-queue)) (tmp 0)) (cond ((null? chars) (cond ((queue-empty? stack) (queue-push! stack tmp)) (else (let1 op (queue-pop! stack) (queue-push! stack #?=((if (eqv? op #\+) * +) (queue-pop! stack) tmp))))) (queue-pop! stack)) (else (let1 char (car chars) (cond ((char-numeric? char) (loop (cdr chars) stack (+ (* 10 tmp) (digit->integer char)))) (else (cond ((queue-empty? stack) (queue-push! stack tmp)) (else (let1 op (queue-pop! stack) (queue-push! stack #?=((if (eqv? op #\+) * +) (queue-pop! stack) tmp))))) (queue-push! stack char) (loop (cdr chars) stack 0)))))))))