結果

問題 No.32 貯金箱の憂鬱
ユーザー Koketti1Koketti1
提出日時 2017-02-05 17:05:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-07-23 02:29:02
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,908 KB
testcase_01 AC 128 ms
54,268 KB
testcase_02 AC 128 ms
53,888 KB
testcase_03 AC 126 ms
53,988 KB
testcase_04 AC 125 ms
54,156 KB
testcase_05 AC 128 ms
54,196 KB
testcase_06 AC 128 ms
54,156 KB
testcase_07 AC 128 ms
53,860 KB
testcase_08 AC 127 ms
54,336 KB
testcase_09 AC 130 ms
54,100 KB
testcase_10 AC 125 ms
54,008 KB
testcase_11 AC 130 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int L = scanner.nextInt();
		int M = scanner.nextInt();
		int N = scanner.nextInt();
		int sum = 0;
		int ans = 0;
		
		sum = 100 * L + 25 * M + N;
		sum = sum % 1000;
		ans += sum / 100;
		sum %= 100;
		ans += sum / 25;
		sum %= 25;
		ans += sum;
		
		System.out.println(ans);
		
		scanner.close();
	}
}
0