結果

問題 No.1673 Lamps on a line
ユーザー timitimi
提出日時 2021-09-13 09:34:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 940 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,580 KB
最終ジャッジ日時 2024-06-25 08:20:39
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 376 ms
10,752 KB
testcase_03 AC 376 ms
10,752 KB
testcase_04 AC 647 ms
10,880 KB
testcase_05 AC 59 ms
10,752 KB
testcase_06 AC 554 ms
10,752 KB
testcase_07 AC 501 ms
13,696 KB
testcase_08 AC 36 ms
12,800 KB
testcase_09 AC 753 ms
11,264 KB
testcase_10 AC 747 ms
12,672 KB
testcase_11 AC 95 ms
12,672 KB
testcase_12 AC 940 ms
14,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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