結果

問題 No.1673 Lamps on a line
ユーザー c-yanc-yan
提出日時 2021-09-11 05:11:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-22 03:53:49
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 142 ms
12,800 KB
testcase_03 AC 143 ms
12,672 KB
testcase_04 AC 229 ms
13,824 KB
testcase_05 AC 41 ms
11,136 KB
testcase_06 AC 210 ms
13,440 KB
testcase_07 AC 251 ms
17,536 KB
testcase_08 AC 35 ms
12,928 KB
testcase_09 AC 356 ms
17,024 KB
testcase_10 AC 365 ms
18,432 KB
testcase_11 AC 61 ms
13,440 KB
testcase_12 AC 518 ms
18,140 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