結果

問題 No.1673 Lamps on a line
ユーザー hydruhydru
提出日時 2021-09-10 21:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 80,416 KB
最終ジャッジ日時 2024-06-11 23:47:05
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,104 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 176 ms
76,468 KB
testcase_03 AC 171 ms
76,540 KB
testcase_04 AC 236 ms
76,664 KB
testcase_05 AC 73 ms
73,996 KB
testcase_06 AC 214 ms
76,448 KB
testcase_07 AC 187 ms
79,104 KB
testcase_08 AC 59 ms
69,168 KB
testcase_09 AC 242 ms
76,772 KB
testcase_10 AC 250 ms
78,176 KB
testcase_11 AC 79 ms
76,676 KB
testcase_12 AC 253 ms
80,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
A=[0 for i in range(n+1)]
ans=0
for i in range(q):
    l,r=map(int,input().split())
    for j in range(l,r+1):
        if A[j]==0:
            ans+=1
        else:
            ans-=1
        A[j]=1-A[j]
    print(ans)
0