結果

問題 No.32 貯金箱の憂鬱
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 22:02:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,050 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-07-23 07:27:00
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,424 KB
testcase_01 AC 128 ms
54,136 KB
testcase_02 AC 132 ms
54,548 KB
testcase_03 AC 131 ms
53,900 KB
testcase_04 AC 130 ms
53,884 KB
testcase_05 AC 133 ms
54,068 KB
testcase_06 AC 127 ms
54,072 KB
testcase_07 AC 131 ms
54,236 KB
testcase_08 AC 129 ms
54,188 KB
testcase_09 AC 129 ms
54,044 KB
testcase_10 AC 128 ms
54,016 KB
testcase_11 AC 131 ms
54,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    static class Coins{
        int c100; 
        int c25;
        int c1;
        Coins(int a, int b, int c){this.c100 = a; this.c25 = b; this.c1 = c;}
    }
    public static Coins oneToTwentyFive(Coins in) {
        return (new Coins(in.c100, in.c25 + (in.c1/25), in.c1%25));
    }
    public static Coins twentyFiveToHundred(Coins in){
        return new Coins(in.c100 + (in.c25/4), in.c25%4, in.c1);
    }
    public static Coins hundredToThousand(Coins in){
        return new Coins(in.c100%10, in.c25, in.c1);
    }
    public static int coinsToNum(Coins in){
        return in.c100 + in.c25 + in.c1;
    }
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        Coins coins = new Coins(
        	Integer.parseInt(sc.next()),
        	Integer.parseInt(sc.next()),
        	Integer.parseInt(sc.next()));
        System.out.println(
            coinsToNum(hundredToThousand(twentyFiveToHundred(oneToTwentyFive(coins)))));
    }
}
0