結果

問題 No.3092 3-2-SAT
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 21:56:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 202 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-11-20 09:09:17
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 91 ms
78,720 KB
testcase_02 AC 109 ms
78,428 KB
testcase_03 AC 100 ms
78,208 KB
testcase_04 AC 145 ms
78,976 KB
testcase_05 AC 103 ms
78,384 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 42 ms
51,584 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 39 ms
51,328 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ans = [1]*N

for i in range(M):
    p,q,a,b = map(int,input().split())
    assert 1 <= a*b <= 3

    p -= 1
    q -= 1
    assert ans[p] == a or ans[q] == b

print (*ans)
0