結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
56,448 KB
testcase_01 AC 115 ms
56,060 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 116 ms
56,280 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