結果

問題 No.1689 Set Cards
ユーザー とりゐとりゐ
提出日時 2021-09-25 05:16:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-07-05 11:58:38
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,240 KB
testcase_01 AC 43 ms
57,856 KB
testcase_02 AC 47 ms
58,496 KB
testcase_03 AC 45 ms
58,496 KB
testcase_04 AC 46 ms
58,112 KB
testcase_05 AC 46 ms
58,424 KB
testcase_06 AC 46 ms
58,880 KB
testcase_07 AC 44 ms
58,496 KB
testcase_08 AC 43 ms
57,856 KB
testcase_09 AC 42 ms
57,728 KB
testcase_10 AC 45 ms
58,240 KB
testcase_11 AC 232 ms
76,888 KB
testcase_12 AC 222 ms
76,680 KB
testcase_13 AC 223 ms
76,416 KB
testcase_14 AC 216 ms
76,484 KB
testcase_15 AC 77 ms
75,392 KB
testcase_16 AC 168 ms
76,416 KB
testcase_17 AC 65 ms
66,816 KB
testcase_18 AC 230 ms
76,764 KB
testcase_19 AC 192 ms
76,784 KB
testcase_20 AC 191 ms
76,800 KB
testcase_21 AC 194 ms
76,464 KB
testcase_22 AC 206 ms
76,380 KB
testcase_23 AC 212 ms
76,372 KB
testcase_24 AC 312 ms
79,872 KB
testcase_25 AC 237 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=1<<14
dp=[0]*t
dp[-1]=1
for i in '_'*int(input()):
 c=sum([1<<j for j in list(map(int,input().split()))[1:]])
 for k in range(t):dp[c&k]+=dp[k]
print(dp[0]%998244353)
0