結果

問題 No.32 貯金箱の憂鬱
ユーザー clamdclamd
提出日時 2016-12-10 14:10:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 3,834 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 56,428 KB
最終ジャッジ日時 2024-05-06 16:37:15
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 131 ms
54,292 KB
testcase_02 AC 132 ms
53,720 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 138 ms
54,396 KB
testcase_08 WA -
testcase_09 AC 132 ms
53,988 KB
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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) {
				w = w % 25;
				t += w / 25;
			} else if (t >= 4) {
				t = t % 4;
				h += t / 4;
			} else if (h >= 10) {
				h = h % 10;
			}
		}
		count = h + t + w;
		System.out.println(count);
	}
}
0