結果

問題 No.1673 Lamps on a line
ユーザー wolgnikwolgnik
提出日時 2021-09-10 21:26:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 81,340 KB
最終ジャッジ日時 2024-06-11 22:25:49
合計ジャッジ時間 2,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,404 KB
testcase_01 AC 35 ms
52,928 KB
testcase_02 AC 132 ms
77,756 KB
testcase_03 AC 121 ms
77,724 KB
testcase_04 AC 158 ms
79,368 KB
testcase_05 AC 82 ms
77,132 KB
testcase_06 AC 140 ms
78,280 KB
testcase_07 AC 92 ms
79,760 KB
testcase_08 AC 50 ms
67,288 KB
testcase_09 AC 101 ms
77,120 KB
testcase_10 AC 110 ms
78,244 KB
testcase_11 AC 60 ms
78,284 KB
testcase_12 AC 119 ms
81,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, Q = map(int, input().split())

table = [0] * N
sm = 0
for _ in range(Q):
  l, r = map(int, input().split())
  sm -= sum(table[l - 1: r])
  for i in range(l - 1, r): table[i] ^= 1
  sm += sum(table[l - 1: r])
  print(sm)
0