結果

問題 No.3092 3-2-SAT
ユーザー googol_S0googol_S0
提出日時 2022-04-01 21:33:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-11-20 08:24:11
合計ジャッジ時間 3,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 99 ms
80,488 KB
testcase_02 AC 127 ms
83,072 KB
testcase_03 AC 117 ms
80,896 KB
testcase_04 AC 178 ms
88,960 KB
testcase_05 AC 120 ms
82,176 KB
testcase_06 AC 124 ms
82,680 KB
testcase_07 AC 157 ms
86,144 KB
testcase_08 AC 110 ms
80,808 KB
testcase_09 AC 133 ms
82,688 KB
testcase_10 AC 94 ms
78,720 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
ANS=[1]*N
Q=[list(map(int,input().split())) for i in range(M)]
for i in range(M):
  Q[i][0]-=1
  Q[i][1]-=1
  if (not(1<=Q[i][2]<=3)) and (not(1<=Q[i][3]<=3)):
    print(-1)
    exit()
  if (not(1<=Q[i][2]<=3)):
    ANS[Q[i][1]]=Q[i][3]
  if (not(1<=Q[i][3]<=3)):
    ANS[Q[i][0]]=Q[i][2]
for i in range(M):
  if ANS[Q[i][0]]!=Q[i][2] and ANS[Q[i][1]]!=Q[i][3]:
    print(-1)
    exit()
print(*ANS)
0