結果

問題 No.825 賢いお買い物
ユーザー tentententen
提出日時 2021-02-10 08:59:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-07-07 18:52:31
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,080 KB
testcase_01 AC 107 ms
40,996 KB
testcase_02 AC 100 ms
40,864 KB
testcase_03 AC 102 ms
40,968 KB
testcase_04 AC 90 ms
39,860 KB
testcase_05 AC 102 ms
41,108 KB
testcase_06 AC 102 ms
41,068 KB
testcase_07 AC 102 ms
40,764 KB
testcase_08 AC 104 ms
39,644 KB
testcase_09 AC 102 ms
41,368 KB
testcase_10 AC 100 ms
41,328 KB
testcase_11 AC 104 ms
40,936 KB
testcase_12 AC 104 ms
41,280 KB
testcase_13 AC 90 ms
39,840 KB
testcase_14 AC 94 ms
40,108 KB
testcase_15 AC 97 ms
40,192 KB
testcase_16 AC 119 ms
41,104 KB
testcase_17 AC 115 ms
41,072 KB
testcase_18 AC 102 ms
40,084 KB
testcase_19 AC 102 ms
41,032 KB
testcase_20 AC 102 ms
40,684 KB
testcase_21 AC 104 ms
39,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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 ans = Integer.MAX_VALUE / 2;
        for (int i = 1; i <= a + b * 10; i++) {
            for (int j = 0; j <= a; j++) {
                for (int k = 0; k <= b; k++) {
                    int value = j + 10 * k;
                    if (value == 0) {
                        continue;
                    }
                    if (getCount(value - i) + a - j + b - k == c) {
                        ans = Math.min(ans, i);
                    }
                }
            }
        }
        if (ans >= Integer.MAX_VALUE / 2) {
            System.out.println("Impossible");
        } else {
            System.out.println(ans);
        }
    }
    
    static int getCount(int x) {
        if (x < 0) {
            return Integer.MAX_VALUE / 2;
        } else {
            return x % 10 + x / 10;
        }
    }
}
0