結果

問題 No.32 貯金箱の憂鬱
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 04:56:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 845 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-07-23 02:02:42
合計ジャッジ時間 5,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,164 KB
testcase_01 AC 117 ms
53,072 KB
testcase_02 AC 131 ms
54,068 KB
testcase_03 AC 117 ms
53,124 KB
testcase_04 AC 129 ms
54,300 KB
testcase_05 AC 131 ms
54,416 KB
testcase_06 AC 127 ms
54,008 KB
testcase_07 AC 112 ms
53,068 KB
testcase_08 AC 130 ms
54,424 KB
testcase_09 AC 134 ms
54,420 KB
testcase_10 AC 118 ms
52,832 KB
testcase_11 AC 128 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.32 貯金箱の憂鬱

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No32 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int l = sc.nextInt();
        int m = sc.nextInt();
        int n = sc.nextInt();
        m += n/25;
        l += m/4;
        l = l%10;
        m = m%4;
        n = n%25;
        out.println((l+m+n));
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0