結果

問題 No.32 貯金箱の憂鬱
ユーザー mits58mits58
提出日時 2016-05-05 14:04:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-23 02:19:01
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,244 KB
testcase_01 AC 130 ms
40,944 KB
testcase_02 AC 131 ms
41,612 KB
testcase_03 AC 130 ms
41,020 KB
testcase_04 AC 129 ms
41,488 KB
testcase_05 AC 131 ms
41,192 KB
testcase_06 AC 118 ms
39,852 KB
testcase_07 AC 130 ms
41,612 KB
testcase_08 AC 135 ms
41,372 KB
testcase_09 AC 133 ms
41,052 KB
testcase_10 AC 131 ms
41,252 KB
testcase_11 AC 130 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int l=sc.nextInt();
        	int m=sc.nextInt();
        	int n=sc.nextInt();
        	int sum=l*100+m*25+n;
        	sum%=1000;
        	l=sum/100;
        	m=(sum%100)/25;
        	n=sum-l*100-m*25;
        	System.out.println(l+m+n);
        }
    }
}
0