結果

問題 No.32 貯金箱の憂鬱
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:40:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 789 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-07-23 07:10:30
合計ジャッジ時間 4,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,492 KB
testcase_01 AC 132 ms
41,112 KB
testcase_02 AC 132 ms
41,084 KB
testcase_03 AC 134 ms
41,260 KB
testcase_04 AC 134 ms
41,708 KB
testcase_05 AC 134 ms
41,324 KB
testcase_06 AC 132 ms
41,720 KB
testcase_07 AC 133 ms
41,684 KB
testcase_08 AC 119 ms
40,116 KB
testcase_09 AC 135 ms
41,296 KB
testcase_10 AC 133 ms
41,528 KB
testcase_11 AC 132 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		//System.out.println("100円硬貨の枚数");
		int L = scanner.nextInt();
		//System.out.println("25円硬貨の枚数");
		int M = scanner.nextInt();
		//System.out.println("1円硬貨の枚数");
		int N = scanner.nextInt();
		scanner.close();
		int a = 100;
		int b = 25;
		int c = 1000;
		int sum = L*a+M*b+N; //貯金箱の金額
		int k = 0;			 //お札の枚数
		int l, m, n = 0;
		k = sum / c;
		int coin_sum = 0;	 //硬貨の金額の合計
		coin_sum = sum - k*c;
		l = coin_sum / a;
		coin_sum = coin_sum - a*l;
		m = coin_sum / b;
		coin_sum = coin_sum - b*m;
		n = coin_sum;
		int num_coin = l + m + n;
		System.out.println(num_coin);
	}
}
0