結果

問題 No.3092 3-2-SAT
ユーザー だれだれ
提出日時 2022-04-01 22:08:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2024-11-20 09:32:13
合計ジャッジ時間 4,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 92 ms
78,488 KB
testcase_02 AC 102 ms
78,524 KB
testcase_03 AC 94 ms
77,992 KB
testcase_04 AC 130 ms
79,092 KB
testcase_05 AC 98 ms
78,108 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
51,836 KB
testcase_12 AC 39 ms
51,584 KB
testcase_13 AC 39 ms
51,584 KB
testcase_14 AC 38 ms
51,328 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
for i in range(m):
    p, q, a, b = map(int, input().split())
    assert(1 <= a * b <= 3)
a = [1] * n
print(*a)
0