結果

問題 No.32 貯金箱の憂鬱
ユーザー takutakutakutaku
提出日時 2020-09-16 17:05:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-07-23 08:03:52
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,120 KB
testcase_01 AC 136 ms
53,908 KB
testcase_02 AC 138 ms
53,940 KB
testcase_03 AC 139 ms
53,716 KB
testcase_04 AC 138 ms
54,196 KB
testcase_05 AC 136 ms
53,788 KB
testcase_06 AC 134 ms
53,864 KB
testcase_07 AC 139 ms
54,032 KB
testcase_08 AC 135 ms
53,904 KB
testcase_09 AC 136 ms
54,312 KB
testcase_10 AC 136 ms
54,220 KB
testcase_11 AC 140 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 入力情報を受け取る
	    Scanner sc = new Scanner(System.in);
	    int l = sc.nextInt();
	    int m = sc.nextInt();
	    int n = sc.nextInt();
	    
	    int sum = 100 * l + 25 * m + n;
	    
	    int result1 = sum / 1000;
	    int after1 = sum % 1000;
	    
	    int result2 = after1 / 100;
	    int after2 = after1 % 100;
	    
	    int result3 = after2 / 25;
	    int after3 = after2 % 25;
	    
	    System.out.println(result2 + result3 + after3);
	    
	}
}

0