結果

問題 No.3092 3-2-SAT
ユーザー 👑 rin204rin204
提出日時 2022-04-01 21:42:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 153 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-11-20 08:42:48
合計ジャッジ時間 4,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 102 ms
78,720 KB
testcase_02 AC 118 ms
78,080 KB
testcase_03 AC 110 ms
78,592 KB
testcase_04 AC 141 ms
79,232 KB
testcase_05 AC 113 ms
77,952 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 42 ms
51,456 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 41 ms
51,328 KB
testcase_15 AC 42 ms
51,584 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
for _ in range(m):
    p, q, a, b = map(int, input().split())
    assert a == 1 or b == 1

print(*[1 for _ in range(n)])
0