結果

問題 No.32 貯金箱の憂鬱
ユーザー nishimitnishimit
提出日時 2018-07-09 00:55:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 71,420 KB
実行使用メモリ 58,048 KB
最終ジャッジ日時 2023-09-22 08:24:42
合計ジャッジ時間 5,176 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
56,208 KB
testcase_01 AC 114 ms
56,324 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 117 ms
56,540 KB
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Chokin{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int coin1 = sc.nextInt();
        int coin25 = sc.nextInt();
        int coin100 = sc.nextInt();
        coin25 += (coin1/25);
        coin1 = (coin1%25);
        coin100 += (coin25/4);
        coin25 = (coin25%4);
        coin100 = (coin100%10);
        System.out.println(coin1+coin25+coin100);

    }
}
0