結果

問題 No.1673 Lamps on a line
ユーザー raven7959raven7959
提出日時 2021-09-20 09:18:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-07-02 12:55:43
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 220 ms
76,928 KB
testcase_03 AC 222 ms
77,440 KB
testcase_04 AC 291 ms
77,056 KB
testcase_05 AC 102 ms
76,672 KB
testcase_06 AC 264 ms
76,928 KB
testcase_07 AC 217 ms
79,360 KB
testcase_08 AC 69 ms
68,096 KB
testcase_09 AC 275 ms
76,544 KB
testcase_10 AC 283 ms
77,952 KB
testcase_11 AC 93 ms
75,136 KB
testcase_12 AC 295 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N,Q=map(int,input().split())
lamp=[0]*(N)
cnt=0
for _ in range(Q):
  l,r=map(int,input().split())
  for i in range(l-1,r):
    if lamp[i]:
      cnt-=1
    else:
      cnt+=1
    lamp[i]=1-lamp[i]
  print(cnt)
0