結果

問題 No.3092 3-2-SAT
ユーザー chineristACchineristAC
提出日時 2022-04-01 21:49:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 92,384 KB
最終ジャッジ日時 2024-04-30 13:42:47
合計ジャッジ時間 6,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
88,876 KB
testcase_01 AC 166 ms
92,132 KB
testcase_02 AC 175 ms
91,924 KB
testcase_03 AC 169 ms
91,840 KB
testcase_04 AC 190 ms
92,384 KB
testcase_05 AC 173 ms
91,680 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 141 ms
89,132 KB
testcase_12 AC 141 ms
89,080 KB
testcase_13 AC 137 ms
89,100 KB
testcase_14 AC 139 ms
89,088 KB
testcase_15 AC 140 ms
89,100 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

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()
    assert a==1 or b==1
    
print(*[1]*N)
0