結果

問題 No.32 貯金箱の憂鬱
ユーザー hikari2004hikari2004
提出日時 2016-04-20 13:44:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-23 02:18:03
合計ジャッジ時間 5,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,132 KB
testcase_01 AC 124 ms
41,252 KB
testcase_02 AC 139 ms
41,304 KB
testcase_03 AC 136 ms
41,252 KB
testcase_04 AC 134 ms
41,400 KB
testcase_05 AC 133 ms
41,500 KB
testcase_06 AC 128 ms
41,312 KB
testcase_07 AC 135 ms
40,916 KB
testcase_08 AC 135 ms
41,484 KB
testcase_09 AC 132 ms
41,308 KB
testcase_10 AC 134 ms
41,284 KB
testcase_11 AC 133 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No32 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int hyaku = sc.nextInt();
		int nijugo = sc.nextInt();
		int iti = sc.nextInt();

		nijugo = nijugo + (iti / 25);
		iti = iti % 25;

		hyaku = hyaku + (nijugo / 4);
		nijugo = nijugo % 4;

		hyaku = hyaku % 10;

		System.out.println(iti + nijugo + hyaku);
	}

}
0