結果

問題 No.32 貯金箱の憂鬱
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 21:03:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 3,419 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-07-23 06:47:34
合計ジャッジ時間 5,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,120 KB
testcase_01 AC 139 ms
53,980 KB
testcase_02 AC 137 ms
54,048 KB
testcase_03 AC 138 ms
54,004 KB
testcase_04 AC 138 ms
53,872 KB
testcase_05 AC 137 ms
54,192 KB
testcase_06 AC 139 ms
54,332 KB
testcase_07 AC 137 ms
53,876 KB
testcase_08 AC 136 ms
54,232 KB
testcase_09 AC 139 ms
54,040 KB
testcase_10 AC 137 ms
54,140 KB
testcase_11 AC 134 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No32 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int hundred = s.nextInt();
        int quarter = s.nextInt();
        int one = s.nextInt();
        int sum = hundred * 100 + quarter * 25 + one;

        int changedHundred = (sum % 1000) / 100;
        int changedQuarter = ((sum % 1000) % 100) / 25;
        int changedOne = ((sum % 1000) % 100) % 25;
        System.out.println(changedHundred + changedQuarter + changedOne);
    }
}
0