結果

問題 No.32 貯金箱の憂鬱
ユーザー Navi092ittNavi092itt
提出日時 2017-10-17 15:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 75,576 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-07-23 06:46:12
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,028 KB
testcase_01 AC 132 ms
54,160 KB
testcase_02 AC 133 ms
54,264 KB
testcase_03 AC 134 ms
54,116 KB
testcase_04 AC 131 ms
54,176 KB
testcase_05 AC 132 ms
54,156 KB
testcase_06 AC 134 ms
53,900 KB
testcase_07 AC 130 ms
54,060 KB
testcase_08 AC 130 ms
54,232 KB
testcase_09 AC 130 ms
53,844 KB
testcase_10 AC 132 ms
54,144 KB
testcase_11 AC 131 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class testC {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        //ここから処理開始

        int L = sc.nextInt();  //100yen
        int M = sc.nextInt();  //25yen
        int N = sc.nextInt();  //1yen

        while (N >= 25) {
            M++; N -= 25;
        }

        while (M >= 4) {
            L++; M -= 4;
        }

        while (L >= 10) {
            L-=10;
        }

        System.out.println(L + M + N);

        //ここまで
        sc.close();
    }
}
0