結果

問題 No.1267 Stop and Coin Game
ユーザー tentententen
提出日時 2022-04-21 17:41:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 39,452 KB
最終ジャッジ日時 2024-06-22 21:09:00
合計ジャッジ時間 7,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,764 KB
testcase_01 AC 44 ms
37,204 KB
testcase_02 AC 45 ms
36,800 KB
testcase_03 AC 44 ms
36,780 KB
testcase_04 AC 43 ms
36,784 KB
testcase_05 AC 50 ms
37,084 KB
testcase_06 AC 45 ms
36,860 KB
testcase_07 AC 45 ms
37,108 KB
testcase_08 AC 74 ms
38,352 KB
testcase_09 AC 46 ms
37,068 KB
testcase_10 AC 156 ms
38,948 KB
testcase_11 AC 95 ms
38,508 KB
testcase_12 AC 74 ms
37,776 KB
testcase_13 AC 45 ms
37,152 KB
testcase_14 AC 44 ms
37,080 KB
testcase_15 AC 46 ms
36,896 KB
testcase_16 AC 166 ms
39,432 KB
testcase_17 AC 47 ms
37,068 KB
testcase_18 AC 47 ms
37,024 KB
testcase_19 AC 46 ms
37,300 KB
testcase_20 AC 49 ms
37,204 KB
testcase_21 AC 47 ms
36,892 KB
testcase_22 AC 52 ms
37,068 KB
testcase_23 AC 50 ms
37,128 KB
testcase_24 AC 111 ms
38,748 KB
testcase_25 AC 113 ms
38,712 KB
testcase_26 AC 48 ms
37,124 KB
testcase_27 AC 60 ms
37,696 KB
testcase_28 AC 57 ms
37,344 KB
testcase_29 AC 48 ms
37,004 KB
testcase_30 AC 153 ms
39,232 KB
testcase_31 AC 51 ms
37,104 KB
testcase_32 AC 77 ms
38,328 KB
testcase_33 AC 117 ms
38,736 KB
testcase_34 AC 120 ms
38,696 KB
testcase_35 AC 161 ms
39,384 KB
testcase_36 AC 51 ms
37,132 KB
testcase_37 AC 76 ms
38,200 KB
testcase_38 AC 179 ms
39,452 KB
testcase_39 AC 71 ms
38,188 KB
testcase_40 AC 56 ms
37,280 KB
testcase_41 AC 68 ms
38,020 KB
testcase_42 AC 49 ms
37,120 KB
testcase_43 AC 76 ms
38,280 KB
testcase_44 AC 157 ms
39,028 KB
testcase_45 AC 45 ms
37,140 KB
testcase_46 AC 47 ms
36,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long v = sc.nextLong();
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
        }
        boolean[] dp = new boolean[1 << n];
        for (int i = (1 << n) - 1; i >= 0; i--) {
            long total = 0;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    dp[i] |= !dp[i ^ (1 << j)];
                } else {
                    total += values[j];
                }
            }
            dp[i] |= (total > v);
        }
        if (dp[(1 << n) - 1]) {
            if (dp[0]) {
                System.out.println("First");
            } else {
                System.out.println("Second");
            }
        } else {
            System.out.println("Draw");
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0