結果

問題 No.1673 Lamps on a line
ユーザー vwxyzvwxyz
提出日時 2022-09-06 15:45:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,788 KB
最終ジャッジ日時 2024-11-21 16:56:10
合計ジャッジ時間 3,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 142 ms
10,880 KB
testcase_03 AC 144 ms
11,008 KB
testcase_04 AC 233 ms
10,880 KB
testcase_05 AC 38 ms
10,752 KB
testcase_06 AC 218 ms
10,880 KB
testcase_07 AC 260 ms
13,696 KB
testcase_08 AC 33 ms
12,672 KB
testcase_09 AC 377 ms
11,392 KB
testcase_10 AC 418 ms
12,672 KB
testcase_11 AC 65 ms
12,672 KB
testcase_12 AC 552 ms
14,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline
write=sys.stdout.write

N,Q=map(int,readline().split())
lamp=[0]*N
ans=0
for q in range(Q):
    l,r=map(int,readline().split())
    l-=1
    for i in range(l,r):
        if lamp[i]:
            ans-=1
        else:
            ans+=1
        lamp[i]^=1
    print(ans)
0