結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,288 KB
testcase_01 AC 133 ms
54,032 KB
testcase_02 AC 131 ms
54,020 KB
testcase_03 AC 135 ms
54,104 KB
testcase_04 AC 132 ms
53,848 KB
testcase_05 AC 133 ms
53,828 KB
testcase_06 AC 133 ms
54,152 KB
testcase_07 AC 134 ms
54,048 KB
testcase_08 AC 131 ms
54,004 KB
testcase_09 AC 134 ms
54,300 KB
testcase_10 AC 131 ms
53,792 KB
testcase_11 AC 134 ms
53,964 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