結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | Yuzu Mashiro |
提出日時 | 2021-04-03 14:26:31 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 390 bytes |
コンパイル時間 | 38 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-06-07 00:22:11 |
合計ジャッジ時間 | 1,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
15,872 KB |
testcase_01 | AC | 22 ms
16,000 KB |
testcase_02 | AC | 21 ms
16,000 KB |
testcase_03 | AC | 21 ms
16,000 KB |
testcase_04 | AC | 22 ms
15,872 KB |
testcase_05 | AC | 22 ms
16,000 KB |
testcase_06 | AC | 23 ms
16,000 KB |
testcase_07 | AC | 22 ms
16,000 KB |
testcase_08 | AC | 25 ms
15,872 KB |
testcase_09 | AC | 21 ms
15,872 KB |
testcase_10 | AC | 22 ms
16,000 KB |
testcase_11 | AC | 21 ms
15,872 KB |
ソースコード
(define l (string->number (read-line))) (define m (string->number (read-line))) (define n (string->number (read-line))) (define remining (+ (* l 100) (* m 25) n)) (print (let*-values (((c1000 r1000) (quotient&remainder remining 1000)) ((c100 r100) (quotient&remainder r1000 100)) ((c25 c1) (quotient&remainder r100 25))) (+ c100 c25 c1)))