結果

問題 No.32 貯金箱の憂鬱
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 20:28:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 2,571 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-01 13:58:08
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,184 KB
testcase_01 AC 129 ms
53,756 KB
testcase_02 AC 132 ms
54,108 KB
testcase_03 AC 128 ms
53,724 KB
testcase_04 AC 128 ms
54,148 KB
testcase_05 AC 131 ms
54,228 KB
testcase_06 AC 129 ms
53,752 KB
testcase_07 AC 120 ms
52,796 KB
testcase_08 AC 133 ms
53,708 KB
testcase_09 AC 133 ms
54,076 KB
testcase_10 AC 132 ms
53,824 KB
testcase_11 AC 132 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(), b = sc.nextInt(),c = sc.nextInt();
		
		if(c  >= 25) {
			b += c / 25;
			c = c % 25;
		}
		if(b >= 4) {
			a += b / 4;
			b = b % 4;
		}
		a = a % 10;
		
		System.out.println(a + b + c);
	}
}
0