結果

問題 No.3092 3-2-SAT
ユーザー rin204rin204
提出日時 2022-04-01 21:42:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 153 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 79,116 KB
最終ジャッジ日時 2024-04-30 13:31:06
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,284 KB
testcase_01 AC 88 ms
78,928 KB
testcase_02 AC 102 ms
78,696 KB
testcase_03 AC 93 ms
78,136 KB
testcase_04 AC 128 ms
79,116 KB
testcase_05 AC 98 ms
78,340 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 39 ms
51,956 KB
testcase_12 AC 38 ms
52,872 KB
testcase_13 AC 37 ms
52,024 KB
testcase_14 AC 38 ms
52,604 KB
testcase_15 AC 38 ms
52,980 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