結果

問題 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
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,296 KB
最終ジャッジ日時 2024-11-20 13:52:29
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 104 ms
12,296 KB
testcase_02 AC 205 ms
11,964 KB
testcase_03 AC 150 ms
11,916 KB
testcase_04 AC 378 ms
12,240 KB
testcase_05 AC 168 ms
11,912 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 27 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