結果

問題 No.32 貯金箱の憂鬱
ユーザー springspring
提出日時 2019-06-12 13:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-23 07:34:33
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,936 KB
testcase_01 AC 126 ms
54,048 KB
testcase_02 AC 129 ms
54,184 KB
testcase_03 AC 126 ms
54,048 KB
testcase_04 AC 125 ms
53,696 KB
testcase_05 AC 122 ms
53,956 KB
testcase_06 AC 130 ms
54,204 KB
testcase_07 AC 114 ms
53,016 KB
testcase_08 AC 127 ms
54,448 KB
testcase_09 AC 129 ms
54,140 KB
testcase_10 AC 128 ms
54,012 KB
testcase_11 AC 125 ms
53,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int oneH = sc.nextInt();
		int tweF = sc.nextInt();
		int oneC = sc.nextInt();
		sc.close();
		if(oneC>=25){
			tweF += oneC/25;
			oneC = oneC%25;
		}
		if(tweF>=4){
			oneH += tweF/4;
			tweF = tweF%4;
		}
		if(oneH>=10){
			oneH = oneH%10;
		}
		System.out.println(oneH + tweF + oneC);
	}// mainmethod

} // class
0