結果

問題 No.1673 Lamps on a line
ユーザー hirakuhiraku
提出日時 2021-09-11 09:07:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-06-22 14:29:02
合計ジャッジ時間 5,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 233 ms
17,920 KB
testcase_03 AC 237 ms
17,920 KB
testcase_04 AC 413 ms
23,168 KB
testcase_05 AC 48 ms
11,520 KB
testcase_06 AC 353 ms
21,376 KB
testcase_07 AC 365 ms
24,900 KB
testcase_08 AC 32 ms
12,928 KB
testcase_09 AC 536 ms
28,416 KB
testcase_10 AC 526 ms
29,952 KB
testcase_11 AC 67 ms
14,336 KB
testcase_12 AC 679 ms
34,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1673
# No.1673 Lamps on a line

# LRの幅が狭いので都度見ていく

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

lamp = [0] * N
cnt = 0
for l, r in LR:
    for i in range(l - 1, r):
        if lamp[i] == 0:
            cnt += 1
        else:
            cnt -= 1
        lamp[i] ^= 1
    print(cnt)
0