結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | naotest2 |
提出日時 | 2017-05-22 14:43:03 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 284 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-09-19 09:45:48 |
合計ジャッジ時間 | 1,899 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 76 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
L=gets.to_i M=gets.to_i N=gets.to_i def ryougae(x,y,z) total = x + y * 25 + z * 100 s4 = (total / 1000).to_i s3 = ((total % 1000) / 100).to_i s2 = (((total % 1000) % 100) / 25).to_i s1 = (((total % 1000) % 100) % 25).to_i return s4 + s3 + s2 + s1 end puts ryougae(N,M,L)