結果

問題 No.1673 Lamps on a line
ユーザー 👑 KazunKazun
提出日時 2021-09-10 21:23:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 83,892 KB
最終ジャッジ日時 2024-06-11 22:16:52
合計ジャッジ時間 1,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,572 KB
testcase_01 AC 34 ms
52,288 KB
testcase_02 AC 61 ms
78,444 KB
testcase_03 AC 61 ms
78,440 KB
testcase_04 AC 69 ms
80,696 KB
testcase_05 AC 46 ms
67,196 KB
testcase_06 AC 69 ms
80,120 KB
testcase_07 AC 72 ms
81,868 KB
testcase_08 AC 46 ms
64,064 KB
testcase_09 AC 78 ms
80,388 KB
testcase_10 AC 83 ms
82,096 KB
testcase_11 AC 48 ms
70,020 KB
testcase_12 AC 81 ms
83,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write
N,Q=map(int,input().split())
X=[0]*(N+1)
Ans=[]

S=0
for _ in range(Q):
    L,R=map(int,input().split())
    delta=0
    for k in range(L,R+1):
        if X[k]==0:
            delta+=1
        else:
            delta-=1
        X[k]^=1
    S+=delta
    Ans.append(S)

write("\n".join(map(str,Ans)))
0