結果

問題 No.32 貯金箱の憂鬱
ユーザー Pump0129Pump0129
提出日時 2018-03-26 23:17:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-25 12:15:42
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,096 KB
testcase_01 AC 132 ms
53,952 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
54,160 KB
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        int yen100 = Integer.parseInt(scan.nextLine());
        int yen25 = Integer.parseInt(scan.nextLine());
        int yen1 = Integer.parseInt(scan.nextLine());

        yen25 += (int) yen1/25;
        yen1 %= 25;
        yen100 += (int) yen25/5;
        yen25 %= 5;
        int yen1000 = (int) yen100/10;
        yen100 %= 10;

        System.out.println(yen1 + yen25 + yen100 + yen1000);
    }
}
0