結果

問題 No.32 貯金箱の憂鬱
ユーザー aim_cpoaim_cpo
提出日時 2019-04-18 16:22:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 3,230 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-07-23 07:32:51
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,736 KB
testcase_01 AC 123 ms
54,044 KB
testcase_02 AC 133 ms
54,072 KB
testcase_03 AC 131 ms
54,140 KB
testcase_04 AC 129 ms
54,128 KB
testcase_05 AC 135 ms
53,908 KB
testcase_06 AC 131 ms
53,976 KB
testcase_07 AC 130 ms
54,100 KB
testcase_08 AC 132 ms
54,044 KB
testcase_09 AC 136 ms
54,124 KB
testcase_10 AC 135 ms
54,284 KB
testcase_11 AC 133 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class TaskK {
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int a = cin.nextInt();
        int b = cin.nextInt();
        int c = cin.nextInt();
        int d = 0;
        b += c / 25;
        c %= 25;
        a += b / 4;
        b %= 4;
        d += a / 10;
        a %= 10;
        System.out.println(a + b + c);
    }
}
0