結果

問題 No.1673 Lamps on a line
ユーザー c-yanc-yan
提出日時 2021-09-10 22:37:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-12 01:42:40
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N, Q = map(int, readline().split())

c = 0
t = [0] * (N + 1)
result = []
for _ in range(Q):
    L, R = map(int, readline().split())
    for i in range(L - 1, R):
        if t[i] == 0:
            c += 1
            t[i] = 1
        elif t[i] == 1:
            c -= 1
            t[i] = 0
    result.append(c)
print(*result, sep='\n')
0