結果

問題 No.32 貯金箱の憂鬱
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-11 15:57:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 819 bytes
コンパイル時間 3,218 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-07-23 06:40:56
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,136 KB
testcase_01 AC 134 ms
53,816 KB
testcase_02 AC 135 ms
54,140 KB
testcase_03 AC 137 ms
54,028 KB
testcase_04 AC 135 ms
54,044 KB
testcase_05 AC 140 ms
54,168 KB
testcase_06 AC 134 ms
54,100 KB
testcase_07 AC 142 ms
54,048 KB
testcase_08 AC 136 ms
54,180 KB
testcase_09 AC 142 ms
54,184 KB
testcase_10 AC 138 ms
54,088 KB
testcase_11 AC 136 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_32{
	public static void main (String[] args){
        Scanner sc= new Scanner(System.in);

        int l = sc.nextInt();  //100円玉の数
        int m = sc.nextInt();  //25円玉の数
        int n = sc.nextInt();  //1円玉の数

        if(n/25>0){  //1円玉が25枚より多い時
             m = m + (n/25);   //1円玉が25枚超えた分を25円玉と両替
             n = n - (n/25)*25;   //両替した分を引く
        }

        if(m/4>0){   //25円玉が4枚より多い時
             l = l + (m/4);    //25円玉が4枚超えた分を100円玉と両替
             m = m - (m/4)*4;  //両替した分を引く
        }

        if(l/10>0){  //100円玉が10枚より多い時
             l= l - (l/10)*10;
        }

        System.out.print(m+n+l);
	}
}
0