結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 39 ms
57,216 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 AC 43 ms
58,112 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 45 ms
58,368 KB
testcase_06 AC 43 ms
58,368 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 40 ms
58,112 KB
testcase_09 AC 40 ms
57,856 KB
testcase_10 AC 42 ms
58,752 KB
testcase_11 AC 226 ms
76,676 KB
testcase_12 AC 219 ms
76,800 KB
testcase_13 AC 223 ms
76,360 KB
testcase_14 AC 217 ms
76,348 KB
testcase_15 AC 77 ms
75,608 KB
testcase_16 AC 160 ms
76,544 KB
testcase_17 AC 57 ms
67,200 KB
testcase_18 AC 223 ms
76,744 KB
testcase_19 AC 184 ms
77,108 KB
testcase_20 AC 182 ms
76,812 KB
testcase_21 AC 185 ms
76,416 KB
testcase_22 AC 201 ms
76,120 KB
testcase_23 AC 200 ms
76,528 KB
testcase_24 AC 315 ms
80,000 KB
testcase_25 AC 237 ms
77,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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