結果

問題 No.32 貯金箱の憂鬱
ユーザー yagi2yagi2
提出日時 2017-04-14 01:07:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-23 04:22:16
合計ジャッジ時間 4,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,172 KB
testcase_01 AC 119 ms
54,212 KB
testcase_02 AC 119 ms
54,080 KB
testcase_03 AC 125 ms
54,224 KB
testcase_04 AC 124 ms
54,024 KB
testcase_05 AC 120 ms
53,852 KB
testcase_06 AC 124 ms
53,904 KB
testcase_07 AC 124 ms
54,060 KB
testcase_08 AC 126 ms
54,060 KB
testcase_09 AC 111 ms
54,036 KB
testcase_10 AC 124 ms
54,056 KB
testcase_11 AC 121 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int L = Integer.parseInt(sc.next());
        int M = Integer.parseInt(sc.next());
        int N = Integer.parseInt(sc.next());

        int ans = 0;

        // 1->25
        M += (int)N / 25;
        ans += N % 25;
        // 25->100
        L += (int)M / 4;
        ans += M % 4;
        // 100->1000
        ans += L % 10;

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