結果
| 問題 |
No.8092 3-2-SAT
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2022-03-22 22:17:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 138 ms / 2,000 ms |
| コード長 | 143 bytes |
| コンパイル時間 | 505 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2024-10-10 16:43:12 |
| 合計ジャッジ時間 | 3,070 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 20 |
ソースコード
N,M=map(int,input().split())
for _ in range(M):
p,q,x,y=map(int,input().split())
if x<0 and y<0:
exit(print(-1))
print(*[1]*N)
Kazun