結果

問題 No.32 貯金箱の憂鬱
ユーザー n_gojon_gojo
提出日時 2020-04-09 18:26:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 3,372 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-07-23 08:06:59
合計ジャッジ時間 5,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,004 KB
testcase_01 AC 130 ms
54,040 KB
testcase_02 AC 131 ms
53,868 KB
testcase_03 AC 131 ms
54,196 KB
testcase_04 AC 131 ms
54,416 KB
testcase_05 AC 130 ms
53,856 KB
testcase_06 AC 129 ms
54,148 KB
testcase_07 AC 132 ms
54,296 KB
testcase_08 AC 130 ms
54,060 KB
testcase_09 AC 133 ms
54,120 KB
testcase_10 AC 132 ms
54,132 KB
testcase_11 AC 131 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No32 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();

        int ans = 0;

        ans += c%25;
        b += c/25;
        ans += b%4;
        a += b/4;
        ans += a%10;

        System.out.println(ans);

    }
}
0