結果

問題 No.32 貯金箱の憂鬱
ユーザー Pump0129Pump0129
提出日時 2018-03-26 23:21:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-23 07:07:09
合計ジャッジ時間 4,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,144 KB
testcase_01 AC 129 ms
41,592 KB
testcase_02 AC 134 ms
41,272 KB
testcase_03 AC 126 ms
41,084 KB
testcase_04 AC 130 ms
41,572 KB
testcase_05 AC 116 ms
40,132 KB
testcase_06 AC 128 ms
41,284 KB
testcase_07 AC 131 ms
41,216 KB
testcase_08 AC 130 ms
41,280 KB
testcase_09 AC 138 ms
41,288 KB
testcase_10 AC 133 ms
41,324 KB
testcase_11 AC 128 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no32;

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/4;
        yen25 %= 4;
        yen100 %= 10;

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