結果

問題 No.2879 Range Flip Queries
ユーザー ルクルク
提出日時 2024-09-08 12:45:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 257,372 KB
最終ジャッジ日時 2024-09-08 12:45:53
合計ジャッジ時間 12,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 OLE -
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,m=map(int,input().split())
a=[0]*(n+1)
b=list(map(int,input().split()))+[0]
for i in range(m):
    l,r=map(int,input().split())
    a[l-1]+=1
    a[r]-=1
    print(a)
for i in range(n):
    a[i+1]+=a[i]
ans=[]
for i in range(n):
    ans.append((a[i]+b[i])%2)
print(*ans)
0