結果

問題 No.32 貯金箱の憂鬱
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 15:53:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-23 02:02:48
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,340 KB
testcase_01 AC 130 ms
54,084 KB
testcase_02 AC 128 ms
54,100 KB
testcase_03 AC 128 ms
53,988 KB
testcase_04 AC 133 ms
54,156 KB
testcase_05 AC 132 ms
53,888 KB
testcase_06 AC 131 ms
54,140 KB
testcase_07 AC 132 ms
54,188 KB
testcase_08 AC 134 ms
54,008 KB
testcase_09 AC 128 ms
54,036 KB
testcase_10 AC 130 ms
54,204 KB
testcase_11 AC 134 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int l = koko.nextInt();
        int m = koko.nextInt();
        int n = koko.nextInt();
        int s = 100*l+25*m+n;
        int ms = s%1000;
        int mms = ms%100;
        int mmms = mms%25;
        System.out.println(((ms-mms)/100)+((mms-mmms)/25)+mmms);
        }
    }
0