結果

問題 No.1673 Lamps on a line
ユーザー titan23titan23
提出日時 2022-06-29 02:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 90,400 KB
最終ジャッジ日時 2024-11-21 22:13:01
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 111 ms
81,764 KB
testcase_03 AC 109 ms
82,176 KB
testcase_04 AC 135 ms
85,844 KB
testcase_05 AC 71 ms
73,088 KB
testcase_06 AC 130 ms
84,608 KB
testcase_07 AC 119 ms
85,292 KB
testcase_08 AC 57 ms
65,664 KB
testcase_09 AC 142 ms
85,760 KB
testcase_10 AC 167 ms
87,452 KB
testcase_11 AC 79 ms
78,976 KB
testcase_12 AC 145 ms
90,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n, q = map(int, input().split())
lr = [list(map(int, input().split())) for _ in range(q)]

now = 0
lamp = [0] * (n+1)
for l,r in lr:
  for i in range(l, r+1):
    lamp[i] += 1
    lamp[i] %= 2
    if lamp[i]:
      now += 1
    else:
      now -= 1
  print(now)
0