結果

問題 No.1673 Lamps on a line
ユーザー ossa_2019ossa_2019
提出日時 2021-09-11 02:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,256 KB
最終ジャッジ日時 2024-06-13 02:24:01
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 119 ms
92,620 KB
testcase_03 AC 108 ms
92,800 KB
testcase_04 AC 143 ms
104,064 KB
testcase_05 AC 54 ms
70,400 KB
testcase_06 AC 122 ms
96,784 KB
testcase_07 AC 111 ms
94,860 KB
testcase_08 AC 45 ms
63,360 KB
testcase_09 AC 147 ms
103,856 KB
testcase_10 AC 158 ms
106,044 KB
testcase_11 AC 63 ms
78,336 KB
testcase_12 AC 155 ms
110,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from sys import stdout


def main(inp, inps, put):
    N, Q = map(int, inp().split())
    L, R = list(zip(*map(lambda x: list(map(int, x.split())), inps())))
    result = [0]*Q
    bits = [1]*(N+2)
    now_sum = 0
    for i, (l, r) in enumerate(zip(L, R)):
        for j in range(l, r+1):
            now_sum += bits[j]
            bits[j] *= -1
        result[i] = now_sum
    
    put("\n".join(map(str, result)))


main(stdin.readline, stdin.readlines, stdout.write)
0