結果

問題 No.32 貯金箱の憂鬱
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-09 23:05:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-23 07:23:29
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,144 KB
testcase_01 AC 136 ms
53,932 KB
testcase_02 AC 134 ms
53,964 KB
testcase_03 AC 135 ms
53,856 KB
testcase_04 AC 134 ms
54,132 KB
testcase_05 AC 135 ms
53,076 KB
testcase_06 AC 135 ms
54,152 KB
testcase_07 AC 135 ms
54,196 KB
testcase_08 AC 135 ms
54,072 KB
testcase_09 AC 138 ms
53,864 KB
testcase_10 AC 138 ms
53,960 KB
testcase_11 AC 136 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
 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 A = sum%1000;
         int B = A%100;
         int C = B%25;
           
         System.out.println(A/100 + B/25 + C);
         
     }
 }
0