結果

問題 No.32 貯金箱の憂鬱
ユーザー k__umek__ume
提出日時 2019-04-28 19:31:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 77,332 KB
実行使用メモリ 38,244 KB
最終ジャッジ日時 2024-07-23 07:32:57
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
38,112 KB
testcase_01 AC 67 ms
37,616 KB
testcase_02 AC 68 ms
37,756 KB
testcase_03 AC 67 ms
37,288 KB
testcase_04 AC 66 ms
37,772 KB
testcase_05 AC 68 ms
38,244 KB
testcase_06 AC 71 ms
37,980 KB
testcase_07 AC 67 ms
37,920 KB
testcase_08 AC 66 ms
37,664 KB
testcase_09 AC 66 ms
37,776 KB
testcase_10 AC 68 ms
38,180 KB
testcase_11 AC 68 ms
38,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String... args) throws IOException {
        try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
            int[] a = reader.lines().limit(3).mapToInt(Integer::parseInt).toArray();
            int sum = (100 * a[0] + 25 * a[1] + a[2]) % 1000;
            int count = sum / 100;
            sum %= 100;
            count += sum / 25;
            System.out.println(count + sum % 25);
        }
    }
}
0