結果

問題 No.32 貯金箱の憂鬱
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-24 20:46:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-07-23 02:06:32
合計ジャッジ時間 5,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,048 KB
testcase_01 AC 130 ms
53,800 KB
testcase_02 AC 128 ms
53,876 KB
testcase_03 AC 130 ms
54,300 KB
testcase_04 AC 129 ms
54,372 KB
testcase_05 AC 130 ms
54,200 KB
testcase_06 AC 129 ms
54,060 KB
testcase_07 AC 128 ms
54,172 KB
testcase_08 AC 128 ms
54,012 KB
testcase_09 AC 125 ms
53,864 KB
testcase_10 AC 128 ms
54,256 KB
testcase_11 AC 127 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No26 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int M = sc.nextInt();
		int N = sc.nextInt();
		
		int count1= N/25;
		N = N - count1*25;
		M = M + count1;
		
		int count2 = M/4;
		M = M - count2*4;
		L = L + count2;
		int count3 = L/10;
		L = L - count3*10;
		
		System.out.println(L+M+N);	
		

	}

}
0