結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | nesaia |
提出日時 | 2017-04-18 09:39:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 680 bytes |
コンパイル時間 | 3,492 ms |
コンパイル使用メモリ | 73,900 KB |
実行使用メモリ | 54,244 KB |
最終ジャッジ日時 | 2024-07-19 07:34:52 |
合計ジャッジ時間 | 5,627 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
41,180 KB |
testcase_01 | AC | 117 ms
41,116 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 120 ms
41,044 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
//No.32 貯金箱の憂鬱 //http://yukicoder.me/problems/5 //20170417 1732 package no32; import java.util.Scanner; public class Chr002 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[] Kouka = new int[]{1, 25, 100}; int Shihei = 1000; int in1, in25, in100; int sum; in1 = scan.nextInt(); in25 = scan.nextInt(); in100 = scan.nextInt(); scan.close(); sum = in1 * Kouka[0] + in25 * Kouka[1] + in100 * Kouka[2]; sum = sum % Shihei; in100 = sum / Kouka[2]; sum = sum % Kouka[2]; in25 = sum / Kouka[1]; sum = sum % Kouka[1]; in1 = sum; System.out.println(in100 + in25+ in1); } }