結果

問題 No.32 貯金箱の憂鬱
ユーザー dazydazy
提出日時 2016-09-01 23:40:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-07-23 02:23:17
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,796 KB
testcase_01 AC 134 ms
53,780 KB
testcase_02 AC 133 ms
54,324 KB
testcase_03 AC 132 ms
54,000 KB
testcase_04 AC 132 ms
54,104 KB
testcase_05 AC 134 ms
53,972 KB
testcase_06 AC 134 ms
53,832 KB
testcase_07 AC 133 ms
54,152 KB
testcase_08 AC 134 ms
54,084 KB
testcase_09 AC 133 ms
53,984 KB
testcase_10 AC 133 ms
54,152 KB
testcase_11 AC 135 ms
54,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yukicoder {
    static public void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int L = scanner.nextInt();
        int M = scanner.nextInt();
        int N = scanner.nextInt();

        if (L < 0 || L > 1000 || M < 0 || M > 1000 || N < 0 || N > 1000) System.exit(1);

        int sum = 100*L + 25*M + 1*N;
        sum = sum%1000;
        L = sum/100;
        sum = sum%100;
        M = sum/25;
        N = sum%25;
        sum = L + M + N;

        System.out.println(sum);
    }
}
0