結果

問題 No.32 貯金箱の憂鬱
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-01 13:17:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-07-23 02:13:50
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,920 KB
testcase_01 AC 129 ms
53,980 KB
testcase_02 AC 132 ms
53,956 KB
testcase_03 AC 133 ms
54,008 KB
testcase_04 AC 135 ms
54,004 KB
testcase_05 AC 130 ms
54,188 KB
testcase_06 AC 130 ms
53,948 KB
testcase_07 AC 132 ms
54,032 KB
testcase_08 AC 129 ms
54,096 KB
testcase_09 AC 129 ms
54,076 KB
testcase_10 AC 130 ms
53,992 KB
testcase_11 AC 131 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str1, str2, str3;
        str1 = in.nextLine();
        str2 = in.nextLine();
        str3 = in.nextLine();
        int L, M, N, n;
        L = Integer.parseInt(str1);
        M = Integer.parseInt(str2);
        N = Integer.parseInt(str3);

        //N * 25 -> M, M * 4 -> L, L * 10 -> n
        //WANT : _L + _M + _N

        int p1 = N / 25;
        int _N = N % 25;
        int p2 = p1 + M;
        int p3 = p2 / 4;
        int _M = p2 % 4;
        int p4 = p3 + L;
        int p5 = p4 / 10;
        int _L = p4 % 10;
        System.out.println(_L + _M + _N);
    }
}
0