結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | hebiyan |
提出日時 | 2017-02-08 14:05:10 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 236 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-07-23 02:28:58 |
合計ジャッジ時間 | 1,271 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
16,896 KB |
testcase_01 | AC | 32 ms
16,896 KB |
testcase_02 | AC | 33 ms
16,896 KB |
testcase_03 | AC | 31 ms
16,896 KB |
testcase_04 | AC | 33 ms
17,024 KB |
testcase_05 | AC | 34 ms
17,152 KB |
testcase_06 | AC | 32 ms
17,024 KB |
testcase_07 | AC | 33 ms
17,024 KB |
testcase_08 | AC | 32 ms
17,024 KB |
testcase_09 | AC | 33 ms
16,896 KB |
testcase_10 | AC | 33 ms
17,024 KB |
testcase_11 | AC | 33 ms
17,024 KB |
ソースコード
(define (solve c xxv i) (let* ((rem-i (mod i 25)) (exd-xxv (+ xxv (div i 25))) (rem-xxv (mod exd-xxv 4)) (exd-c (+ c (div exd-xxv 4))) (rem-c (mod exd-c 10))) (+ rem-i rem-xxv rem-c))) (print (solve (read) (read) (read)))