結果

問題 No.32 貯金箱の憂鬱
ユーザー clamdclamd
提出日時 2016-12-10 14:13:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-23 02:27:34
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,260 KB
testcase_01 AC 133 ms
54,144 KB
testcase_02 AC 135 ms
53,952 KB
testcase_03 AC 133 ms
53,888 KB
testcase_04 AC 142 ms
54,116 KB
testcase_05 AC 138 ms
53,996 KB
testcase_06 AC 133 ms
54,400 KB
testcase_07 AC 132 ms
54,180 KB
testcase_08 AC 137 ms
54,264 KB
testcase_09 AC 133 ms
53,860 KB
testcase_10 AC 133 ms
54,108 KB
testcase_11 AC 136 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class changeMoney {

	public static void main(String[] args) {
		Scanner sn = new Scanner(System.in);
		int h = sn.nextInt();
		int t = sn.nextInt();
		int w = sn.nextInt();
		int count;
		sn.close();

		while (h >= 10 || t >= 4 || w >= 25) {
			if (w >= 25) {
				t += w / 25;
				w = w % 25;
			} else if (t >= 4) {
				h += t / 4;
				t = t % 4;
			} else if (h >= 10) {
				h = h % 10;
			}
		}
		count = h + t + w;
		System.out.println(count);
	}
}
0