結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | kitamoto0407 |
提出日時 | 2024-03-17 08:21:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 1,765 bytes |
コンパイル時間 | 3,835 ms |
コンパイル使用メモリ | 76,044 KB |
実行使用メモリ | 37,328 KB |
最終ジャッジ日時 | 2024-09-30 04:39:11 |
合計ジャッジ時間 | 4,221 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
36,912 KB |
testcase_01 | AC | 55 ms
37,120 KB |
testcase_02 | AC | 54 ms
37,144 KB |
testcase_03 | AC | 55 ms
36,960 KB |
testcase_04 | AC | 54 ms
36,912 KB |
testcase_05 | AC | 55 ms
36,988 KB |
testcase_06 | AC | 55 ms
37,120 KB |
testcase_07 | AC | 54 ms
37,228 KB |
testcase_08 | AC | 54 ms
36,960 KB |
testcase_09 | AC | 55 ms
36,912 KB |
testcase_10 | AC | 54 ms
36,936 KB |
testcase_11 | AC | 55 ms
37,328 KB |
ソースコード
import java.io.*; // 処理 class Process { private PrintWriter printWriter; private int L; private int M; private int N; Process(PrintWriter printWriter, int L, int M, int N) { this.printWriter = printWriter; this.L = L; this.M = M; this.N = N; } // 結果を出力 void printResult() throws IOException { int numOf1000YenBills = 0; int exchangeCount = 0; // 1 円硬貨を 25 円硬貨に両替 exchangeCount = N / 25; N -= 25 * exchangeCount; M += exchangeCount; // 25 円硬貨を 100 円硬貨に両替 exchangeCount = M / 4; M -= 4 * exchangeCount; L += exchangeCount; // 100 円硬貨を 1000 円札に両替 exchangeCount = L / 10; L -= 10 * exchangeCount; numOf1000YenBills += exchangeCount; printWriter.println(L + M + N); } } public class Main { public static void main(String[] args) throws IOException { var bufferedReader = new BufferedReader(new InputStreamReader(System.in)); var printWriter = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out))); // 入力 int L = Integer.parseInt(bufferedReader.readLine().trim()); int M = Integer.parseInt(bufferedReader.readLine().trim()); int N = Integer.parseInt(bufferedReader.readLine().trim()); // Process クラスで処理を行う var process = new Process(printWriter, L, M, N); process.printResult(); // 各ストリームを閉じる // 出力ストリームを閉じるときに標準出力に文字を出力する bufferedReader.close(); printWriter.close(); } }