結果

問題 No.32 貯金箱の憂鬱
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 04:56:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 73,740 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-07-23 02:26:53
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,764 KB
testcase_01 AC 129 ms
41,444 KB
testcase_02 AC 116 ms
40,220 KB
testcase_03 AC 124 ms
41,060 KB
testcase_04 AC 129 ms
41,432 KB
testcase_05 AC 129 ms
41,040 KB
testcase_06 AC 137 ms
41,188 KB
testcase_07 AC 139 ms
41,408 KB
testcase_08 AC 133 ms
41,476 KB
testcase_09 AC 136 ms
41,180 KB
testcase_10 AC 133 ms
40,936 KB
testcase_11 AC 136 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
        int total = L*100 + M*25 + N;
        int coinsum = total%1000;
        int c100 = coinsum/100 ;
        int c25 = (coinsum%100)/25 ;
        int c1 = coinsum%25 ;
        int r = c100 + c25 + c1 ;
        System.out.println(r);
    }
}
0