結果

問題 No.1673 Lamps on a line
ユーザー ThetaTheta
提出日時 2022-11-01 19:35:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,540 KB
最終ジャッジ日時 2024-07-16 09:33:10
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 355 ms
10,752 KB
testcase_03 AC 342 ms
10,752 KB
testcase_04 AC 597 ms
10,752 KB
testcase_05 AC 60 ms
10,752 KB
testcase_06 AC 513 ms
10,752 KB
testcase_07 AC 484 ms
27,540 KB
testcase_08 AC 35 ms
11,008 KB
testcase_09 AC 766 ms
17,844 KB
testcase_10 AC 741 ms
22,504 KB
testcase_11 AC 86 ms
13,828 KB
testcase_12 AC 815 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache


def main():
    N, Q = map(int, input().split())
    lamps = set()
    for _ in range(Q):
        L, R = map(int, input().split())
        for number in range(L, R+1):
            if number in lamps:
                lamps.discard(number)
            else:
                lamps.add(number)

        print(len(lamps))


if __name__ == "__main__":
    main()
0