結果

問題 No.247 線形計画問題もどき
ユーザー kano_townkano_town
提出日時 2015-07-18 00:13:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 2,994 ms
コンパイル使用メモリ 75,832 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-08 09:49:39
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
52,684 KB
testcase_02 AC 125 ms
54,396 KB
testcase_03 AC 107 ms
52,676 KB
testcase_04 AC 116 ms
53,916 KB
testcase_05 AC 114 ms
53,872 KB
testcase_06 AC 101 ms
52,884 KB
testcase_07 AC 108 ms
53,632 KB
testcase_08 AC 111 ms
53,760 KB
testcase_09 AC 114 ms
53,820 KB
testcase_10 AC 115 ms
54,100 KB
testcase_11 AC 100 ms
53,032 KB
testcase_12 AC 105 ms
52,856 KB
testcase_13 AC 106 ms
53,112 KB
testcase_14 AC 104 ms
52,564 KB
testcase_15 AC 121 ms
54,000 KB
testcase_16 AC 103 ms
52,748 KB
testcase_17 WA -
testcase_18 AC 116 ms
53,804 KB
testcase_19 AC 123 ms
53,656 KB
testcase_20 WA -
testcase_21 AC 125 ms
53,800 KB
testcase_22 WA -
testcase_23 AC 122 ms
54,068 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 117 ms
54,316 KB
testcase_27 AC 115 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder247 {

    int now;
    static boolean ok = false;
    static int res = -1;
    static int[] a;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int c = sc.nextInt();
        int n = sc.nextInt();
        a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        // ゴリ押し
        gorigori(n - 1, c, 0);
        System.out.println(res);
    }

    public static void gorigori(int now, int nokori, int num) {
        if (ok || now < 0) return;
        if (nokori % a[now] == 0) {
            res = num + nokori / a[now];
            ok = true;
            return;
        }
        for (int i = nokori / a[now]; i >= 0; i--) {
            gorigori(now - 1, nokori - i * a[now], num + i);
        }
    }
}
0