結果

問題 No.2879 Range Flip Queries
ユーザー Meso MesoMeso Meso
提出日時 2024-09-13 19:04:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 250 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-09-13 19:04:58
合計ジャッジ時間 52,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 1,589 ms
10,752 KB
testcase_04 AC 1,605 ms
10,752 KB
testcase_05 AC 1,578 ms
10,624 KB
testcase_06 AC 1,587 ms
10,624 KB
testcase_07 AC 1,575 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 1,848 ms
20,356 KB
testcase_14 AC 1,945 ms
20,972 KB
testcase_15 AC 1,451 ms
15,648 KB
testcase_16 AC 539 ms
16,796 KB
testcase_17 AC 1,272 ms
25,440 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
s = list(map(int, input().split()))
a = [0] * (n+1)
for i in range(q):
    l, r = map(int, input().split())
    l -= 1
    a[l] ^= 1
    a[r] ^= 1

for i in range(n):
    a[i+1] ^= a[i]
    s[i] ^= a[i]
    
print(*s)
0