結果

問題 No.3092 3-2-SAT
ユーザー ニックネームニックネーム
提出日時 2022-04-02 00:06:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,368 KB
最終ジャッジ日時 2024-04-30 16:57:47
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 113 ms
12,296 KB
testcase_02 AC 222 ms
12,092 KB
testcase_03 AC 162 ms
11,912 KB
testcase_04 AC 399 ms
12,368 KB
testcase_05 AC 180 ms
11,916 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
f = True
for _ in range(m):
    p, q, a, b = map(int, input().split())
    if a < 0 or b < 0: f = False
print(*[1]*n if f else -1)
0