結果

問題 No.32 貯金箱の憂鬱
ユーザー SaYaSaYa
提出日時 2015-11-07 23:33:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-07-23 02:11:41
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,404 KB
testcase_01 AC 126 ms
54,048 KB
testcase_02 AC 137 ms
54,252 KB
testcase_03 AC 131 ms
53,848 KB
testcase_04 AC 136 ms
54,200 KB
testcase_05 AC 132 ms
53,980 KB
testcase_06 AC 131 ms
53,900 KB
testcase_07 AC 118 ms
52,952 KB
testcase_08 AC 129 ms
53,848 KB
testcase_09 AC 132 ms
54,028 KB
testcase_10 AC 131 ms
54,008 KB
testcase_11 AC 131 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int l = Integer.parseInt(scanner.next());
        int m = Integer.parseInt(scanner.next());
        int n = Integer.parseInt(scanner.next());
        int total = ((l * 100) + (m * 25) + n);
        int count = 0;
        count += (total % 1000) / 100;
        count += (total % 100) / 25;
        count += (total % 25);
        System.out.println(count);
    }
}
0