結果

問題 No.1673 Lamps on a line
ユーザー c-yanc-yan
提出日時 2021-09-10 22:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 150 ms
12,544 KB
testcase_03 AC 144 ms
12,544 KB
testcase_04 AC 233 ms
13,824 KB
testcase_05 AC 43 ms
11,008 KB
testcase_06 AC 215 ms
13,184 KB
testcase_07 AC 269 ms
17,280 KB
testcase_08 AC 35 ms
12,800 KB
testcase_09 AC 382 ms
16,768 KB
testcase_10 AC 382 ms
18,176 KB
testcase_11 AC 63 ms
13,184 KB
testcase_12 AC 567 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

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