結果

問題 No.1673 Lamps on a line
ユーザー shinichishinichi
提出日時 2021-09-11 11:48:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 80,084 KB
最終ジャッジ日時 2024-06-22 19:27:36
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,340 KB
testcase_01 AC 37 ms
52,468 KB
testcase_02 AC 213 ms
77,140 KB
testcase_03 AC 212 ms
76,628 KB
testcase_04 AC 282 ms
76,748 KB
testcase_05 AC 89 ms
76,312 KB
testcase_06 AC 247 ms
76,672 KB
testcase_07 AC 197 ms
78,788 KB
testcase_08 AC 61 ms
69,140 KB
testcase_09 AC 251 ms
76,872 KB
testcase_10 AC 271 ms
78,036 KB
testcase_11 AC 80 ms
75,436 KB
testcase_12 AC 273 ms
80,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

now = 0
lamp = [0] * (N+1)
for _ in range(Q):
    l, r = map(lambda x: int(x)-1, input().split())
    for i in range(l, r+1):
        if lamp[i]:
            now -= 1
        else:
            now += 1
        lamp[i] = 1-lamp[i]
    print(now)
0