結果

問題 No.1673 Lamps on a line
ユーザー puznekopuzneko
提出日時 2021-11-07 00:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,504 KB
最終ジャッジ日時 2024-04-25 12:31:41
合計ジャッジ時間 2,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 105 ms
93,568 KB
testcase_03 AC 106 ms
93,184 KB
testcase_04 AC 129 ms
105,600 KB
testcase_05 AC 71 ms
69,248 KB
testcase_06 AC 121 ms
101,760 KB
testcase_07 AC 114 ms
98,816 KB
testcase_08 AC 61 ms
65,920 KB
testcase_09 AC 130 ms
108,416 KB
testcase_10 AC 151 ms
110,208 KB
testcase_11 AC 75 ms
73,344 KB
testcase_12 AC 135 ms
117,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, q, *indata = map(int, stdin.read().split())

ans = 0
onoff = [0 for i in range(n+1)]

offset = 0
for i in range(q):
    l, r = indata[offset + 2*i],indata[offset + 2*i+1]
    for i in range(l,r+1):
        if onoff[i] == 0:
            onoff[i] = 1
            ans += 1
        else:
            onoff[i] = 0
            ans -= 1
    print("{}".format(ans))
0