結果

問題 No.32 貯金箱の憂鬱
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 16:58:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-07-23 02:27:21
合計ジャッジ時間 4,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,924 KB
testcase_01 AC 128 ms
41,040 KB
testcase_02 AC 133 ms
41,360 KB
testcase_03 AC 131 ms
41,144 KB
testcase_04 AC 116 ms
39,832 KB
testcase_05 AC 132 ms
41,060 KB
testcase_06 AC 133 ms
41,092 KB
testcase_07 AC 131 ms
41,088 KB
testcase_08 AC 131 ms
41,264 KB
testcase_09 AC 132 ms
41,528 KB
testcase_10 AC 133 ms
41,128 KB
testcase_11 AC 129 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y32 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a, h = sc.nextInt(), q = sc.nextInt(), o = sc.nextInt();
		a = (h*100+q*25+o)%1000;
		System.out.println(a/100+(a%100)/25+a%25);
		sc.close();
	}
}
0