結果

問題 No.825 賢いお買い物
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-07 11:24:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-01 23:32:26
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,180 KB
testcase_01 AC 139 ms
41,052 KB
testcase_02 AC 134 ms
41,100 KB
testcase_03 AC 118 ms
40,128 KB
testcase_04 AC 134 ms
41,132 KB
testcase_05 AC 135 ms
41,016 KB
testcase_06 AC 137 ms
41,080 KB
testcase_07 AC 135 ms
41,112 KB
testcase_08 AC 136 ms
41,132 KB
testcase_09 AC 136 ms
41,152 KB
testcase_10 AC 120 ms
40,072 KB
testcase_11 AC 136 ms
41,208 KB
testcase_12 AC 132 ms
41,416 KB
testcase_13 AC 133 ms
41,212 KB
testcase_14 AC 118 ms
39,764 KB
testcase_15 AC 133 ms
41,332 KB
testcase_16 AC 136 ms
40,884 KB
testcase_17 AC 132 ms
40,912 KB
testcase_18 AC 138 ms
41,388 KB
testcase_19 AC 134 ms
41,320 KB
testcase_20 AC 121 ms
40,224 KB
testcase_21 AC 134 ms
40,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int a = stdin.nextInt(); // 1G
        int b = stdin.nextInt(); // 10G
        int c = stdin.nextInt();
        
        // x: 1Gの枚数
        // y: 10Gの枚数
        // z: 購入する商品の価格
        int ans = Integer.MAX_VALUE;
        for (int x = 0; x <= a; x++) {
            for (int y = 0; y <= b; y++) {
                for (int z = 1; z <= a + b * 10; z++) {
                    if (x + y * 10 < z) continue; // 購入不能
                    int p = (x + y * 10 - z) / 10; // おつりの1Gの枚数
                    int q = (x + y * 10 - z) % 10; // おつりの10Gの枚数
                    if (a + b - (x + y) + (p + q) == c) {
                        ans = Math.min(ans, z);
                    }
                }
            }
        }
        
        if (ans == Integer.MAX_VALUE) {
            System.out.println("Impossible");
        } else {
            System.out.println(ans);
        }
        
    }
}
0