結果

問題 No.32 貯金箱の憂鬱
ユーザー spacenautspacenaut
提出日時 2016-05-14 22:03:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-07-23 02:20:57
合計ジャッジ時間 4,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,340 KB
testcase_01 AC 134 ms
41,184 KB
testcase_02 AC 128 ms
41,412 KB
testcase_03 AC 128 ms
41,092 KB
testcase_04 AC 129 ms
41,116 KB
testcase_05 AC 132 ms
41,320 KB
testcase_06 AC 128 ms
40,980 KB
testcase_07 AC 127 ms
41,352 KB
testcase_08 AC 128 ms
41,000 KB
testcase_09 AC 113 ms
40,096 KB
testcase_10 AC 130 ms
41,400 KB
testcase_11 AC 132 ms
40,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No0032{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		int a100 = sc.nextInt();
		int a025 = sc.nextInt();
		int a001 = sc.nextInt();
		
		if(a001 / 25 > 0){
			a025 += a001 / 25;
			a001 %= 25;
		}
		if(a025 / 4 > 0){
			a100 += a025 / 4;
			a025 %= 4;
		}
		if(a100 / 10 > 0){
			a100 %= 10;
		}
		
		int result = a001 + a025 + a100;
		System.out.println(result);
	}
}
0