結果

問題 No.32 貯金箱の憂鬱
ユーザー show258show258
提出日時 2017-03-30 18:38:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 812 bytes
コンパイル時間 3,826 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-23 04:12:12
合計ジャッジ時間 5,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,164 KB
testcase_01 AC 136 ms
54,228 KB
testcase_02 AC 137 ms
54,008 KB
testcase_03 AC 137 ms
54,004 KB
testcase_04 AC 133 ms
54,164 KB
testcase_05 AC 135 ms
53,968 KB
testcase_06 AC 136 ms
53,924 KB
testcase_07 AC 134 ms
53,900 KB
testcase_08 AC 136 ms
54,028 KB
testcase_09 AC 140 ms
53,860 KB
testcase_10 AC 137 ms
53,908 KB
testcase_11 AC 136 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No32 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 100円硬貨の個数
        int l = sc.nextInt();

        // int 25円硬貨の個数
        int m = sc.nextInt();

        // int 1円硬貨の個数
        int n = sc.nextInt();

        sc.close(); // 標準入力をクローズ

        // 1円硬貨25枚を25円硬貨に交換する
        m = m + (n / 25);
        n = n % 25;

        // 25円硬貨4枚を100円硬貨に交換する
        l = l + (m / 4);
        m = m % 4;

        // 100円硬貨10枚を1000円札に交換する
        l = l % 10;

        System.out.println( l + m + n );

    }
}
0