結果

問題 No.32 貯金箱の憂鬱
ユーザー papipenpapipen
提出日時 2017-03-24 02:30:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-07-23 04:07:13
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,124 KB
testcase_01 AC 134 ms
54,112 KB
testcase_02 AC 140 ms
54,132 KB
testcase_03 AC 138 ms
54,000 KB
testcase_04 AC 136 ms
54,124 KB
testcase_05 AC 136 ms
53,964 KB
testcase_06 AC 137 ms
53,912 KB
testcase_07 AC 135 ms
54,104 KB
testcase_08 AC 138 ms
54,344 KB
testcase_09 AC 137 ms
53,916 KB
testcase_10 AC 134 ms
53,860 KB
testcase_11 AC 133 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Tyokinbako{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int b = sc.nextInt();
    int c = sc.nextInt();
    int d = (c / 25 + b) * 25 / 100;
    int e = (d + a) * 100 / 1000;
    int sum = c % 25 + (((c / 25 + b) * 25) % 100) / 25 + (((d + a) * 100) % 1000) / 100;
    System.out.println(sum);
  }
}
0