結果
| 問題 | No.8092 3-2-SAT |
| コンテスト | |
| ユーザー |
siganai
|
| 提出日時 | 2022-04-01 21:51:58 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 91 ms / 2,000 ms |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 352 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 83,072 KB |
| 最終ジャッジ日時 | 2026-05-14 10:40:17 |
| 合計ジャッジ時間 | 2,410 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 20 |
ソースコード
n,m=map(int,input().split())
for _ in range(m):
a,b,c,d=map(int,input().split())
if c < 0:
print(-1)
exit()
print(*([1] * n))
siganai