結果

問題 No.1673 Lamps on a line
ユーザー pluto77pluto77
提出日時 2021-09-26 12:58:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 833 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-05 15:36:49
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 336 ms
10,496 KB
testcase_03 AC 321 ms
10,496 KB
testcase_04 AC 545 ms
10,624 KB
testcase_05 AC 51 ms
10,496 KB
testcase_06 AC 488 ms
10,496 KB
testcase_07 AC 454 ms
13,312 KB
testcase_08 AC 31 ms
12,416 KB
testcase_09 AC 658 ms
11,136 KB
testcase_10 AC 689 ms
12,544 KB
testcase_11 AC 81 ms
12,288 KB
testcase_12 AC 833 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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