結果

問題 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  
実行時間 517 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,704 KB
最終ジャッジ日時 2024-05-01 12:33:37
合計ジャッジ時間 3,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 144 ms
10,880 KB
testcase_03 AC 138 ms
11,008 KB
testcase_04 AC 233 ms
11,008 KB
testcase_05 AC 39 ms
10,880 KB
testcase_06 AC 207 ms
11,008 KB
testcase_07 AC 257 ms
13,684 KB
testcase_08 AC 33 ms
12,672 KB
testcase_09 AC 366 ms
11,264 KB
testcase_10 AC 379 ms
12,544 KB
testcase_11 AC 58 ms
12,672 KB
testcase_12 AC 517 ms
14,704 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