結果

問題 No.1673 Lamps on a line
ユーザー H3PO4H3PO4
提出日時 2021-09-10 21:24:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 621 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-11 22:19:11
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 155 ms
10,752 KB
testcase_03 AC 152 ms
10,624 KB
testcase_04 AC 248 ms
10,624 KB
testcase_05 AC 42 ms
10,624 KB
testcase_06 AC 227 ms
10,752 KB
testcase_07 AC 303 ms
13,568 KB
testcase_08 AC 35 ms
12,800 KB
testcase_09 AC 426 ms
11,008 KB
testcase_10 AC 443 ms
12,544 KB
testcase_11 AC 68 ms
12,672 KB
testcase_12 AC 621 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N, Q = map(int, input().split())
table = [0] * N
ans = 0
for _ in range(Q):
    l, r = map(int, input().split())
    for i in range(l - 1, r):
        ans += (1 - table[i]) - table[i]
        table[i] = 1 - table[i]
    print(ans)
0