結果

問題 No.2879 Range Flip Queries
ユーザー Meso MesoMeso Meso
提出日時 2024-09-13 18:56:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 251 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,796 KB
最終ジャッジ日時 2024-09-13 18:56:56
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,644 KB
testcase_01 AC 38 ms
53,088 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 288 ms
76,196 KB
testcase_04 AC 274 ms
76,292 KB
testcase_05 AC 316 ms
76,728 KB
testcase_06 AC 308 ms
76,284 KB
testcase_07 AC 323 ms
76,520 KB
testcase_08 AC 55 ms
64,992 KB
testcase_09 AC 45 ms
59,076 KB
testcase_10 AC 50 ms
60,564 KB
testcase_11 AC 55 ms
64,576 KB
testcase_12 AC 55 ms
64,876 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = list(map(int, input().split()))

for i in range(q):
    l, r = map(int, input().split())
    for j in range(l-1, r):
        if a[j] == 0:
            a[j] = 1
        elif a[j] == 1:
            a[j] = 0
print(*a)
0