結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 105 ms
93,440 KB
testcase_03 AC 104 ms
93,440 KB
testcase_04 AC 124 ms
105,600 KB
testcase_05 AC 70 ms
69,120 KB
testcase_06 AC 119 ms
101,760 KB
testcase_07 AC 112 ms
98,688 KB
testcase_08 AC 60 ms
65,536 KB
testcase_09 AC 128 ms
108,288 KB
testcase_10 AC 149 ms
110,080 KB
testcase_11 AC 74 ms
73,216 KB
testcase_12 AC 134 ms
117,376 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