結果

問題 No.3092 3-2-SAT
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 21:54:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 79,088 KB
最終ジャッジ日時 2024-04-30 13:50:53
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,328 KB
testcase_01 AC 84 ms
78,752 KB
testcase_02 AC 103 ms
78,468 KB
testcase_03 AC 94 ms
78,680 KB
testcase_04 AC 124 ms
79,088 KB
testcase_05 AC 93 ms
78,240 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 37 ms
53,080 KB
testcase_12 AC 36 ms
53,216 KB
testcase_13 AC 37 ms
52,380 KB
testcase_14 AC 37 ms
52,520 KB
testcase_15 AC 37 ms
51,936 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ans = [1]*N

for i in range(M):
    p,q,a,b = map(int,input().split())
    assert 1 <= a*b <= 3

print (*ans)
0