結果

問題 No.32 貯金箱の憂鬱
ユーザー Mcpu3Mcpu3
提出日時 2018-04-15 22:15:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-07-23 07:09:46
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,352 KB
testcase_01 AC 131 ms
41,332 KB
testcase_02 AC 131 ms
41,332 KB
testcase_03 AC 132 ms
41,480 KB
testcase_04 AC 122 ms
40,288 KB
testcase_05 AC 131 ms
41,272 KB
testcase_06 AC 133 ms
41,304 KB
testcase_07 AC 132 ms
40,980 KB
testcase_08 AC 132 ms
41,212 KB
testcase_09 AC 134 ms
41,176 KB
testcase_10 AC 135 ms
41,548 KB
testcase_11 AC 132 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no32{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int l=stdIn.nextInt();
		int m=stdIn.nextInt();
		int n=stdIn.nextInt();
		int o=0;
		int x;
		if(n>=25) {
			x=n/25;
			m+=x;
			n=n%25;
		}
		if(m>=4) {
			x=m/4;
			l+=x;
			m=m%4;
		}
		if(l>=10) {
			x=l/10;
			o+=x;
			l=l%10;
		}
		System.out.println(l+m+n);
	}
}
0