結果

問題 No.3092 3-2-SAT
ユーザー googol_S0googol_S0
提出日時 2022-04-01 21:33:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 89,200 KB
最終ジャッジ日時 2024-04-30 13:14:32
合計ジャッジ時間 3,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,612 KB
testcase_01 AC 97 ms
80,296 KB
testcase_02 AC 125 ms
82,860 KB
testcase_03 AC 110 ms
81,188 KB
testcase_04 AC 179 ms
89,200 KB
testcase_05 AC 118 ms
82,388 KB
testcase_06 AC 121 ms
82,616 KB
testcase_07 AC 153 ms
86,016 KB
testcase_08 AC 109 ms
80,684 KB
testcase_09 AC 129 ms
82,500 KB
testcase_10 AC 92 ms
79,232 KB
testcase_11 AC 36 ms
52,828 KB
testcase_12 AC 37 ms
53,180 KB
testcase_13 AC 37 ms
52,528 KB
testcase_14 AC 37 ms
53,628 KB
testcase_15 AC 38 ms
53,476 KB
testcase_16 AC 37 ms
52,200 KB
testcase_17 AC 38 ms
53,060 KB
testcase_18 AC 37 ms
52,336 KB
testcase_19 AC 38 ms
52,744 KB
testcase_20 AC 37 ms
52,608 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