結果

問題 No.2277 Honest or Dishonest ?
ユーザー 👑 KazunKazun
提出日時 2023-04-21 22:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-11-08 06:31:39
合計ジャッジ時間 12,908 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 248 ms
93,824 KB
testcase_04 AC 281 ms
98,176 KB
testcase_05 AC 162 ms
83,712 KB
testcase_06 AC 210 ms
88,448 KB
testcase_07 AC 183 ms
87,040 KB
testcase_08 AC 151 ms
83,328 KB
testcase_09 AC 204 ms
89,472 KB
testcase_10 AC 160 ms
83,328 KB
testcase_11 AC 119 ms
78,592 KB
testcase_12 AC 134 ms
79,872 KB
testcase_13 AC 241 ms
91,264 KB
testcase_14 AC 135 ms
80,640 KB
testcase_15 AC 156 ms
83,328 KB
testcase_16 AC 195 ms
86,784 KB
testcase_17 AC 128 ms
79,104 KB
testcase_18 AC 269 ms
96,512 KB
testcase_19 AC 266 ms
97,152 KB
testcase_20 AC 232 ms
92,160 KB
testcase_21 AC 178 ms
82,432 KB
testcase_22 AC 204 ms
88,960 KB
testcase_23 AC 190 ms
84,992 KB
testcase_24 AC 195 ms
87,936 KB
testcase_25 AC 224 ms
90,880 KB
testcase_26 AC 131 ms
82,048 KB
testcase_27 AC 133 ms
81,536 KB
testcase_28 AC 173 ms
83,072 KB
testcase_29 AC 198 ms
85,376 KB
testcase_30 AC 126 ms
79,616 KB
testcase_31 AC 154 ms
83,968 KB
testcase_32 AC 197 ms
84,608 KB
testcase_33 AC 264 ms
95,872 KB
testcase_34 AC 246 ms
94,208 KB
testcase_35 AC 120 ms
79,744 KB
testcase_36 AC 175 ms
86,144 KB
testcase_37 AC 201 ms
86,272 KB
testcase_38 AC 100 ms
77,568 KB
testcase_39 AC 114 ms
78,080 KB
testcase_40 AC 129 ms
79,744 KB
testcase_41 AC 243 ms
93,184 KB
testcase_42 AC 168 ms
85,248 KB
testcase_43 AC 265 ms
96,896 KB
testcase_44 AC 330 ms
100,992 KB
testcase_45 AC 327 ms
101,120 KB
testcase_46 AC 326 ms
101,120 KB
testcase_47 AC 329 ms
101,760 KB
testcase_48 AC 332 ms
101,504 KB
testcase_49 AC 281 ms
99,328 KB
testcase_50 AC 234 ms
93,568 KB
testcase_51 AC 225 ms
91,904 KB
testcase_52 AC 237 ms
93,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,Q=map(int,input().split())

    Data=[[] for _ in range(N+1)]
    for i in range(Q):
        A,B,C=map(int,input().split())
        Data[A].append((B,C))
        Data[B].append((A,C))

    T=[0]*(N+1)
    ans=1; Mod=998244353
    for x in range(1,N+1):
        if T[x]:
            continue

        E=[set([x]), set()]
        S=[x]; T[x]=1
        while S:
            y=S.pop()
            mode=0 if y in E[0] else 1
            for b,c in Data[y]:
                if (b in E[0]) or (b in E[1]):
                    if b not in E[mode^c]:
                        return 0
                else:
                    S.append(b)
                    E[mode^c].add(b)
                    T[b]=1
        ans*=2
        ans%=Mod
    return ans

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

print(solve())
0