結果

問題 No.32 貯金箱の憂鬱
ユーザー bigbear90560bigbear90560
提出日時 2015-07-03 00:36:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 3,531 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 54,112 KB
最終ジャッジ日時 2024-07-23 02:05:15
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,112 KB
testcase_01 AC 139 ms
54,040 KB
testcase_02 AC 141 ms
54,068 KB
testcase_03 AC 137 ms
53,824 KB
testcase_04 AC 140 ms
53,836 KB
testcase_05 AC 138 ms
53,968 KB
testcase_06 AC 139 ms
54,008 KB
testcase_07 AC 140 ms
53,824 KB
testcase_08 AC 138 ms
54,020 KB
testcase_09 AC 139 ms
54,072 KB
testcase_10 AC 141 ms
54,072 KB
testcase_11 AC 139 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * No.32 貯金箱の憂鬱
 */
public class MelancholyOfPiggyBank {

	public static void main(String[] args) {

        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();	// 100円
        int b = sc.nextInt();	//  25円
        int c = sc.nextInt();	//   1円

        int upCoinNum = 0;
        int restCoinNum = 0;
        int sumCoinNum = 0;
        
        if (0 != c) {
        	upCoinNum = (int)Math.floor(c / 25);
        	restCoinNum = c % 25;
        	b += upCoinNum;
        	sumCoinNum += restCoinNum; 
        }
        if (0 != b) {
        	upCoinNum = (int)Math.floor((b)/ 4);
        	restCoinNum = b % 4;
        	a += upCoinNum;
        	sumCoinNum += restCoinNum; 
        }
        if (0 != a) {
        	restCoinNum = a % 10;
        	sumCoinNum += restCoinNum; 
        }
        System.out.println(sumCoinNum);
	}

}
0