結果

問題 No.32 貯金箱の憂鬱
ユーザー yamax3232yamax3232
提出日時 2017-02-14 20:56:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 3,469 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-23 02:29:44
合計ジャッジ時間 5,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,896 KB
testcase_01 AC 133 ms
54,044 KB
testcase_02 AC 134 ms
54,208 KB
testcase_03 AC 137 ms
54,068 KB
testcase_04 AC 133 ms
54,004 KB
testcase_05 AC 133 ms
53,912 KB
testcase_06 AC 133 ms
54,100 KB
testcase_07 AC 134 ms
53,840 KB
testcase_08 AC 136 ms
53,928 KB
testcase_09 AC 133 ms
54,164 KB
testcase_10 AC 133 ms
54,176 KB
testcase_11 AC 133 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Ryogae {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		System.out.print("");
		int k=0,l=kb.nextInt(),m=kb.nextInt(),n=kb.nextInt();
		//int total100=100*l,total25=25*m,total1=n;
		while(n>=25||m>=4||l>=10){
			if(n>=25){
				m++;
				n-=25;
				
				//total1=n;
			}

			else if(m>=4){
				l++;
				m-=4;
				
				//total25=25*m;
		
			}

			else if(l>=10){
				k++;
				l-=10;
				
				//total100=100*l;

			}
		}
		System.out.printf("%d\n",l+m+n);

	}
}
0