結果

問題 No.32 貯金箱の憂鬱
ユーザー howakurohowakuro
提出日時 2015-09-25 00:50:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-07-23 02:10:22
合計ジャッジ時間 5,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,796 KB
testcase_01 AC 131 ms
54,136 KB
testcase_02 AC 130 ms
53,860 KB
testcase_03 AC 131 ms
53,776 KB
testcase_04 AC 134 ms
54,040 KB
testcase_05 AC 132 ms
54,128 KB
testcase_06 AC 128 ms
54,052 KB
testcase_07 AC 129 ms
54,160 KB
testcase_08 AC 128 ms
54,144 KB
testcase_09 AC 127 ms
53,996 KB
testcase_10 AC 132 ms
54,472 KB
testcase_11 AC 130 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Gomokunarabe {
	static Scanner scan = new Scanner(System.in);
	public static void main(String[] args) {
		int L =scan.nextInt()*100;
		int M =scan.nextInt()*25;
		int N =scan.nextInt();
		
		int Total = L+M+N;
		
		int Thousand = Total/1000;
		Total -= Thousand*1000;
		
		int Handred = Total/100;
		Total -=Handred*100;
		
		int TowentyFive = Total/25;
		Total -= TowentyFive*25;
		
		int one = Total;
		System.out.println(Handred+TowentyFive+one);
	}
}
0