結果

問題 No.1673 Lamps on a line
ユーザー 河野竜也河野竜也
提出日時 2021-09-12 17:32:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 955 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,568 KB
最終ジャッジ日時 2024-06-24 08:38:18
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 381 ms
10,880 KB
testcase_03 AC 380 ms
10,880 KB
testcase_04 AC 640 ms
10,752 KB
testcase_05 AC 61 ms
10,752 KB
testcase_06 AC 536 ms
10,752 KB
testcase_07 AC 504 ms
13,696 KB
testcase_08 AC 38 ms
12,800 KB
testcase_09 AC 739 ms
11,264 KB
testcase_10 AC 766 ms
12,544 KB
testcase_11 AC 95 ms
12,672 KB
testcase_12 AC 955 ms
14,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
ans=0
d=[0]*(n+1)
for i in range(q):
  l,r=map(int,input().split())
  for j in range(l,r+1):
    if d[j]==0:
      d[j]=1
      ans+=1
    else:
      d[j]=0
      ans-=1
  print(ans)
0