結果

問題 No.2879 Range Flip Queries
ユーザー hiryuNhiryuN
提出日時 2024-09-08 13:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 148,536 KB
最終ジャッジ日時 2024-09-08 13:05:25
合計ジャッジ時間 14,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,704 KB
testcase_01 AC 38 ms
51,872 KB
testcase_02 AC 38 ms
53,036 KB
testcase_03 AC 269 ms
75,912 KB
testcase_04 AC 293 ms
76,224 KB
testcase_05 AC 265 ms
75,700 KB
testcase_06 AC 268 ms
76,128 KB
testcase_07 AC 265 ms
76,048 KB
testcase_08 AC 46 ms
60,916 KB
testcase_09 AC 40 ms
52,392 KB
testcase_10 AC 45 ms
58,748 KB
testcase_11 AC 44 ms
55,156 KB
testcase_12 AC 47 ms
60,732 KB
testcase_13 AC 404 ms
120,644 KB
testcase_14 AC 417 ms
126,020 KB
testcase_15 AC 343 ms
97,556 KB
testcase_16 AC 181 ms
103,780 KB
testcase_17 AC 334 ms
134,240 KB
testcase_18 AC 538 ms
144,568 KB
testcase_19 AC 511 ms
147,692 KB
testcase_20 AC 521 ms
147,796 KB
testcase_21 AC 510 ms
148,268 KB
testcase_22 AC 508 ms
148,104 KB
testcase_23 AC 515 ms
144,428 KB
testcase_24 AC 515 ms
148,312 KB
testcase_25 AC 543 ms
148,456 KB
testcase_26 AC 523 ms
148,116 KB
testcase_27 AC 536 ms
148,196 KB
testcase_28 AC 506 ms
148,392 KB
testcase_29 AC 450 ms
148,232 KB
testcase_30 AC 420 ms
148,316 KB
testcase_31 AC 421 ms
148,536 KB
testcase_32 AC 448 ms
148,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,Q=map(int,input().split())
A=list(map(int,input().split()))
S=[1,0]
X=[0]+[0]*n
for i in range(Q):
    a,b=map(int,input().split())
    X[a-1]=S[X[a-1]]
    X[b]=S[X[b]]
#print(X)    
for i in range(n):
    if X[i]:
      A[i]=S[A[i]]
      X[i+1]=S[X[i+1]]
print(*A)
    
0