結果

問題 No.32 貯金箱の憂鬱
ユーザー jp_stejp_ste
提出日時 2016-03-02 19:41:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-23 02:16:34
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,000 KB
testcase_01 AC 142 ms
54,024 KB
testcase_02 AC 142 ms
54,340 KB
testcase_03 AC 139 ms
53,944 KB
testcase_04 AC 143 ms
54,136 KB
testcase_05 AC 140 ms
54,084 KB
testcase_06 AC 138 ms
53,716 KB
testcase_07 AC 138 ms
53,844 KB
testcase_08 AC 137 ms
54,132 KB
testcase_09 AC 136 ms
53,956 KB
testcase_10 AC 139 ms
54,192 KB
testcase_11 AC 137 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

            int divN = N / 25;
            int remN = N % 25;
            int divM = (M+divN) / 4;
            int remM = (M+divN) % 4;
            int remL = (L+divM) % 10;
            
            int ans = remN + remM + remL;
            System.out.println(ans);
        }
    }
}
0