結果

問題 No.32 貯金箱の憂鬱
ユーザー tsunabittsunabit
提出日時 2018-04-01 00:07:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,990 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-23 07:08:48
合計ジャッジ時間 5,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,088 KB
testcase_01 AC 137 ms
54,356 KB
testcase_02 AC 136 ms
53,920 KB
testcase_03 AC 140 ms
54,408 KB
testcase_04 AC 136 ms
54,304 KB
testcase_05 AC 137 ms
53,820 KB
testcase_06 AC 138 ms
54,240 KB
testcase_07 AC 139 ms
54,368 KB
testcase_08 AC 136 ms
54,104 KB
testcase_09 AC 135 ms
53,980 KB
testcase_10 AC 133 ms
54,024 KB
testcase_11 AC 134 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// 問題文
// 太郎君はいつも小銭を貯金していて、硬貨を貯金箱に入れています。
// 貯金箱の中身がある程度たまったので、太郎君は銀行に行って両替をしてもらうことにしました。
// 太郎君の国では通貨として1000円札の紙幣と、100円、25円、1円の硬貨があります。
// それ以外の金額の紙幣や硬貨はありません。
// 両替は、
// ・1円硬貨25枚で25円硬貨1枚に
// ・25円硬貨4枚で100円硬貨1枚に
// ・100円硬貨10枚で1000円札1枚に
// それぞれ替えることができます。
// 入力に、貯金箱の中身としてそれぞれの硬貨の枚数が与えられるので、
// 硬貨の枚数が最も少なくなるように両替したとき、
// 最終的に太郎君が所持する硬貨の合計枚数を出力してください。
// 両替は手数料無く何度でもすることができます。
// また、両替の前後で総額が変化してはいけません。
// 入力
// L
// M
// N
// 1行目に、100円硬貨の枚数を表す整数 L(0≤L≤1000) が与えられます。
// 2行目に、25円硬貨の枚数を表す整数 M(0≤M≤1000) が与えられます。
// 3行目に、1円硬貨の枚数を表す整数 N(0≤N≤1000) が与えられます。
public class No32 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        int m = sc.nextInt();
        int n = sc.nextInt();
        int total = (100 * l) + (25 * m) + n;

        int sen = total / 1000;
        total = total - (sen * 1000);
        int hyaku = total / 100;
        total = total - (hyaku * 100);
        int nijugo = total / 25;
        total = total - (nijugo * 25);
        int iti = total;

        System.out.println(hyaku + nijugo + iti);
    }
}
0