結果

問題 No.1673 Lamps on a line
ユーザー gr1msl3ygr1msl3y
提出日時 2021-09-10 21:24:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 101,240 KB
最終ジャッジ日時 2024-06-11 22:18:28
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(Q)]

state = [0]*(N)
ct = 0
ans = []
for l, r in A:
    for i in range(l-1, r):
        if state[i]:
            ct -= 1
            state[i] = 0
        else:
            ct += 1
            state[i] = 1
    ans.append(ct)

print(*ans, sep='\n')
0