結果

問題 No.3092 3-2-SAT
ユーザー chineristACchineristAC
提出日時 2022-04-01 21:51:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 92,208 KB
最終ジャッジ日時 2024-04-30 13:46:21
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
88,856 KB
testcase_01 AC 170 ms
92,072 KB
testcase_02 AC 176 ms
91,936 KB
testcase_03 AC 170 ms
91,528 KB
testcase_04 AC 190 ms
92,208 KB
testcase_05 AC 171 ms
91,604 KB
testcase_06 AC 142 ms
88,920 KB
testcase_07 AC 142 ms
88,936 KB
testcase_08 AC 141 ms
88,984 KB
testcase_09 AC 142 ms
89,108 KB
testcase_10 AC 141 ms
89,140 KB
testcase_11 AC 141 ms
89,100 KB
testcase_12 AC 143 ms
88,856 KB
testcase_13 AC 140 ms
88,924 KB
testcase_14 AC 143 ms
89,080 KB
testcase_15 AC 142 ms
88,932 KB
testcase_16 AC 141 ms
89,096 KB
testcase_17 AC 141 ms
89,084 KB
testcase_18 AC 143 ms
88,968 KB
testcase_19 AC 144 ms
88,784 KB
testcase_20 AC 143 ms
89,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd
from fractions import Fraction

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
for _ in range(M):
    p,q,a,b = mi()
    if a!=1 and b!=1:
        exit(print(-1))

print(*[1]*N)
0