結果

問題 No.2879 Range Flip Queries
ユーザー titiatitia
提出日時 2024-09-22 02:28:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 259 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,176 KB
最終ジャッジ日時 2024-09-22 02:29:36
合計ジャッジ時間 36,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 1,512 ms
10,752 KB
testcase_04 AC 1,564 ms
10,496 KB
testcase_05 AC 1,498 ms
10,752 KB
testcase_06 AC 1,477 ms
10,496 KB
testcase_07 AC 1,481 ms
10,496 KB
testcase_08 AC 28 ms
10,496 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,496 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 1,697 ms
29,340 KB
testcase_14 AC 1,841 ms
30,820 KB
testcase_15 AC 1,478 ms
19,992 KB
testcase_16 AC 558 ms
22,408 KB
testcase_17 AC 1,157 ms
39,456 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 AC 1,959 ms
43,048 KB
testcase_31 AC 1,989 ms
43,052 KB
testcase_32 AC 1,994 ms
43,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))

X=[0]*(N+3)

for i in range(Q):
    x,y=map(int,input().split())
    X[x-1]+=1
    X[y]+=1

for i in range(1,N+3):
    X[i]+=X[i-1]

for i in range(N):
    if X[i]%2==1:
        A[i]^=1

print(*A)
0