結果

問題 No.32 貯金箱の憂鬱
ユーザー l1267976l1267976
提出日時 2017-03-07 18:37:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 3,286 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-07-23 02:30:38
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;

public class No32 {

    public static void main(String[] args) {
        int[] coins = { 1000, 100, 25, 1 };

        Scanner sc = new Scanner(System.in);
        int sum = 0;
        for (int i = 1; i <= 3; i++) {
            sum += sc.nextInt() * coins[i];
        }

        int[] coinsCnt = new int[4];

        for (int i = 0; i < coins.length; i++) {
            coinsCnt[i] = sum / coins[i];
            sum -= coins[i] * coinsCnt[i];
        }

        int result = 0;

        for (int i = 1; i <= 3; i++) {
            result += coinsCnt[i];
        }

        System.out.println(result);

        sc.close();
    }

}
0