結果

問題 No.1689 Set Cards
ユーザー merlinmerlin
提出日時 2021-09-24 23:50:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 2,587 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-07-05 11:38:36
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,880 KB
testcase_01 AC 50 ms
36,872 KB
testcase_02 AC 57 ms
36,800 KB
testcase_03 AC 54 ms
36,540 KB
testcase_04 AC 54 ms
37,056 KB
testcase_05 AC 54 ms
36,800 KB
testcase_06 AC 53 ms
36,920 KB
testcase_07 AC 50 ms
36,920 KB
testcase_08 AC 49 ms
36,856 KB
testcase_09 AC 49 ms
36,672 KB
testcase_10 AC 52 ms
36,648 KB
testcase_11 AC 134 ms
39,812 KB
testcase_12 AC 168 ms
40,976 KB
testcase_13 AC 143 ms
39,856 KB
testcase_14 AC 136 ms
39,572 KB
testcase_15 AC 108 ms
38,740 KB
testcase_16 AC 130 ms
39,704 KB
testcase_17 AC 94 ms
38,460 KB
testcase_18 AC 173 ms
41,188 KB
testcase_19 AC 192 ms
41,392 KB
testcase_20 AC 184 ms
41,240 KB
testcase_21 AC 157 ms
40,316 KB
testcase_22 AC 161 ms
40,216 KB
testcase_23 AC 145 ms
39,856 KB
testcase_24 AC 181 ms
41,328 KB
testcase_25 AC 188 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int t=12,i,j,m=1<<t;
        
        int n=Integer.parseInt(bu.readLine());
        long dp[][]=new long[2][m],M=998244353;
        dp[0][m-1]=1; int cur=1;
        for(i=1;i<=n;i++)
        {
            for(j=0;j<m;j++) dp[cur][j]=dp[cur^1][j];

            String s[]=bu.readLine().split(" ");
            int k=Integer.parseInt(s[0]),x,vis=0;
            for(j=0;j<k;j++)
            {
                x=Integer.parseInt(s[j+1])-1;
                vis|=1<<x;
            }

            for(j=0;j<m;j++) dp[cur][j&vis]=(dp[cur][j&vis]+dp[cur^1][j])%M;
            cur^=1;
            //for(j=0;j<10;j++) System.out.print(dp[cur^1][j]+" ");
            //System.out.println();
        }
        System.out.println(dp[cur^1][0]);
    }
}
0