結果

問題 No.1673 Lamps on a line
ユーザー googol_S0googol_S0
提出日時 2021-09-10 21:22:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-06-11 22:12:41
合計ジャッジ時間 3,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 224 ms
77,184 KB
testcase_03 AC 226 ms
77,056 KB
testcase_04 AC 303 ms
77,312 KB
testcase_05 AC 105 ms
76,544 KB
testcase_06 AC 273 ms
77,056 KB
testcase_07 AC 228 ms
78,976 KB
testcase_08 AC 70 ms
68,224 KB
testcase_09 AC 283 ms
76,416 KB
testcase_10 AC 292 ms
78,080 KB
testcase_11 AC 97 ms
74,752 KB
testcase_12 AC 289 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
C=[0]*N
ANS=0
for i in range(Q):
  L,R=map(int,input().split())
  for j in range(L-1,R):
    if C[j]:
      ANS-=1
    else:
      ANS+=1
    C[j]^=1
  print(ANS)
0