結果

問題 No.32 貯金箱の憂鬱
ユーザー umisanumisan
提出日時 2017-10-13 15:27:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-23 06:45:26
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,208 KB
testcase_01 AC 131 ms
41,408 KB
testcase_02 AC 132 ms
41,188 KB
testcase_03 AC 136 ms
41,168 KB
testcase_04 AC 140 ms
41,344 KB
testcase_05 AC 147 ms
41,128 KB
testcase_06 AC 144 ms
41,376 KB
testcase_07 AC 137 ms
41,588 KB
testcase_08 AC 144 ms
41,420 KB
testcase_09 AC 140 ms
41,088 KB
testcase_10 AC 144 ms
41,416 KB
testcase_11 AC 147 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        //ここから処理開始
        int l = sc.nextInt();
        int m = sc.nextInt();
        int n = sc.nextInt();
        m += (n / 25);
        n = (n % 25);
        l += (m / 4);
        m = (m % 4);
        int t = (l / 10);
        l = (l % 10);
        System.out.println(n + m + l);
        //ここまで
        sc.close();
    }
}
0