結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 101 ms
82,560 KB
testcase_03 AC 91 ms
82,500 KB
testcase_04 AC 110 ms
86,000 KB
testcase_05 AC 63 ms
73,344 KB
testcase_06 AC 108 ms
84,788 KB
testcase_07 AC 101 ms
85,364 KB
testcase_08 AC 50 ms
65,664 KB
testcase_09 AC 117 ms
85,808 KB
testcase_10 AC 132 ms
87,680 KB
testcase_11 AC 67 ms
79,192 KB
testcase_12 AC 115 ms
90,752 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