結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | eagle |
提出日時 | 2022-05-26 14:43:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 112 ms / 5,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 1,722 ms |
コンパイル使用メモリ | 73,580 KB |
実行使用メモリ | 41,616 KB |
最終ジャッジ日時 | 2024-09-20 15:00:13 |
合計ジャッジ時間 | 3,614 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
40,336 KB |
testcase_01 | AC | 108 ms
41,096 KB |
testcase_02 | AC | 112 ms
41,344 KB |
testcase_03 | AC | 106 ms
41,008 KB |
testcase_04 | AC | 107 ms
41,232 KB |
testcase_05 | AC | 110 ms
41,616 KB |
testcase_06 | AC | 101 ms
39,932 KB |
testcase_07 | AC | 109 ms
41,216 KB |
testcase_08 | AC | 106 ms
40,832 KB |
testcase_09 | AC | 106 ms
40,980 KB |
testcase_10 | AC | 92 ms
39,784 KB |
testcase_11 | AC | 112 ms
41,528 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); //100円硬貨の枚数 int L = sc.nextInt(); //25円硬貨の枚数 int M = sc.nextInt(); //1円硬貨の枚数 int N = sc.nextInt(); //1円硬貨を両替 M += N / 25; N = N % 25; //25円硬貨を両替 L += M / 4; M = M % 4; //100円硬貨を両替 L = L % 10; //硬貨の合計枚数を求める int sum = N + M + L; System.out.println(sum); } }