結果

問題 No.32 貯金箱の憂鬱
ユーザー veroomveroom
提出日時 2016-10-15 13:23:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 3,182 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-07-23 02:26:11
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,780 KB
testcase_01 AC 129 ms
54,044 KB
testcase_02 AC 132 ms
54,388 KB
testcase_03 AC 133 ms
54,148 KB
testcase_04 AC 128 ms
54,268 KB
testcase_05 AC 119 ms
52,688 KB
testcase_06 AC 130 ms
53,928 KB
testcase_07 AC 131 ms
54,252 KB
testcase_08 AC 130 ms
54,244 KB
testcase_09 AC 127 ms
54,160 KB
testcase_10 AC 124 ms
53,864 KB
testcase_11 AC 128 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yukicoder {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int one = sc.nextInt();// 1円硬貨枚数
		int twentyFive = sc.nextInt();// 25円硬貨枚数
		int hundred = sc.nextInt();// 100円硬貨枚数
		sc.close();
		int totalCoin = 0;// 硬貨の合計枚数

		// 両替処理開始
		totalCoin = hundred / 25;
		hundred -= totalCoin * 25;
		twentyFive += totalCoin;

		totalCoin = 0;
		totalCoin = twentyFive / 4;
		twentyFive -= totalCoin * 4;
		one += totalCoin;

		totalCoin = 0;
		totalCoin = one / 10;
		one -= totalCoin * 10;

		totalCoin = one + twentyFive + hundred;

		System.out.println(totalCoin);
	}
}
0