結果

問題 No.32 貯金箱の憂鬱
ユーザー yu_017yu_017
提出日時 2019-01-13 19:42:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 4,202 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-07-23 07:25:08
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,216 KB
testcase_01 AC 135 ms
41,160 KB
testcase_02 AC 132 ms
41,160 KB
testcase_03 AC 132 ms
41,004 KB
testcase_04 AC 136 ms
41,268 KB
testcase_05 AC 138 ms
41,264 KB
testcase_06 AC 145 ms
41,388 KB
testcase_07 AC 137 ms
41,332 KB
testcase_08 AC 136 ms
41,568 KB
testcase_09 AC 132 ms
41,080 KB
testcase_10 AC 132 ms
41,268 KB
testcase_11 AC 137 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000032 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int total = sc.nextInt()*100+sc.nextInt()*25+sc.nextInt();
		sc.close();
		int r = (total%1000)/100;
		r+=(total%100)/25;
		r+=total%25;
		
		System.out.println(r);
	}
}
0