結果

問題 No.32 貯金箱の憂鬱
ユーザー sasakkisasakki
提出日時 2016-04-11 17:41:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-07-23 02:17:33
合計ジャッジ時間 4,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,164 KB
testcase_01 AC 130 ms
54,004 KB
testcase_02 AC 130 ms
53,932 KB
testcase_03 AC 129 ms
53,844 KB
testcase_04 AC 130 ms
54,116 KB
testcase_05 AC 129 ms
54,052 KB
testcase_06 AC 130 ms
54,144 KB
testcase_07 AC 128 ms
54,088 KB
testcase_08 AC 124 ms
53,956 KB
testcase_09 AC 128 ms
53,996 KB
testcase_10 AC 128 ms
53,912 KB
testcase_11 AC 129 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);

		int han = Integer.parseInt(sc.next());
		int twef = Integer.parseInt(sc.next());
		int one = Integer.parseInt(sc.next());

		twef += one / 25;
		one = one % 25;
		han += twef / 4;
		twef = twef % 4;
		han = han % 10;

		System.out.println( one + twef + han );
	}
}
0