結果

問題 No.32 貯金箱の憂鬱
ユーザー DevbotBotDevbotBot
提出日時 2015-06-19 11:06:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-07-23 02:05:09
合計ジャッジ時間 4,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,924 KB
testcase_01 AC 136 ms
53,940 KB
testcase_02 AC 139 ms
54,000 KB
testcase_03 AC 136 ms
54,336 KB
testcase_04 AC 136 ms
54,100 KB
testcase_05 AC 138 ms
54,084 KB
testcase_06 AC 134 ms
53,944 KB
testcase_07 AC 122 ms
54,772 KB
testcase_08 AC 137 ms
53,976 KB
testcase_09 AC 139 ms
54,020 KB
testcase_10 AC 138 ms
53,972 KB
testcase_11 AC 136 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No32{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int m[] = {1000, 100, 25, 1};
		int L = m[1]*(sc.nextInt());
		int M = m[2]*(sc.nextInt());
		int N = m[3]*(sc.nextInt());
		int sum = L + M + N;
		int coin = 0;
		for (int i=0; i<=3; i++){
			if (i > 0 ){
				coin = coin + (sum/m[i]);
			}
			sum = (sum - m[i]*(sum/m[i]));
		}
		System.out.println(coin);
	}
}
0