結果

問題 No.32 貯金箱の憂鬱
ユーザー marumaru
提出日時 2016-03-22 17:03:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 75,540 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-23 02:16:59
合計ジャッジ時間 5,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,360 KB
testcase_01 AC 127 ms
41,612 KB
testcase_02 AC 130 ms
41,248 KB
testcase_03 AC 129 ms
41,012 KB
testcase_04 AC 131 ms
41,160 KB
testcase_05 AC 133 ms
41,432 KB
testcase_06 AC 130 ms
41,248 KB
testcase_07 AC 131 ms
41,136 KB
testcase_08 AC 132 ms
41,184 KB
testcase_09 AC 134 ms
41,312 KB
testcase_10 AC 134 ms
41,268 KB
testcase_11 AC 129 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_32 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int l = stdIn.nextInt();
		int m = stdIn.nextInt();
		int n = stdIn.nextInt();
		
		int sum = (l * 100) + (m * 25) + (n * 1);
		
		int yen1000 = sum / 1000;
		int yen100 = (sum % 1000) / 100;
		int yen25 = ((sum % 1000) % 100) / 25;
		int yen1 = (((sum % 1000) % 100) % 25);
		
		int coin = yen100 + yen25 + yen1;
		
		System.out.println(coin);
	}
}
0