結果

問題 No.32 貯金箱の憂鬱
ユーザー GrenacheGrenache
提出日時 2015-06-30 19:07:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-23 02:05:29
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,860 KB
testcase_01 AC 137 ms
54,012 KB
testcase_02 AC 134 ms
53,980 KB
testcase_03 AC 134 ms
54,112 KB
testcase_04 AC 135 ms
53,952 KB
testcase_05 AC 135 ms
54,140 KB
testcase_06 AC 134 ms
54,324 KB
testcase_07 AC 137 ms
54,084 KB
testcase_08 AC 139 ms
54,184 KB
testcase_09 AC 136 ms
54,364 KB
testcase_10 AC 134 ms
54,180 KB
testcase_11 AC 140 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder32 {

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

        int l = sc.nextInt();
        int m = sc.nextInt();
        int n = sc.nextInt();

        int sum = l * 100 + m * 25 + n;

        l = (sum % 1000) / 100;
        m = (sum % 100) / 25;
        n = (sum % 25);
        
        System.out.println(l + m + n);
        
        sc.close();
    }
}
0