結果

問題 No.32 貯金箱の憂鬱
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 16:07:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-07-23 04:18:08
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,824 KB
testcase_01 AC 127 ms
54,096 KB
testcase_02 AC 114 ms
52,752 KB
testcase_03 AC 128 ms
53,908 KB
testcase_04 AC 126 ms
54,072 KB
testcase_05 AC 113 ms
54,168 KB
testcase_06 AC 126 ms
54,088 KB
testcase_07 AC 125 ms
53,884 KB
testcase_08 AC 114 ms
53,020 KB
testcase_09 AC 132 ms
54,212 KB
testcase_10 AC 134 ms
54,160 KB
testcase_11 AC 128 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve();
	}

	private static void input(){
	}

	private static void solve(){
		int in=s.nextInt()*100+s.nextInt()*25+s.nextInt();
		in%=1000;
		System.out.println(in/100+(in%100)/25+(in%25));
	}
}
0