結果

問題 No.1673 Lamps on a line
ユーザー harapecoharapeco
提出日時 2022-03-30 11:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 80,304 KB
最終ジャッジ日時 2024-11-14 10:48:37
合計ジャッジ時間 3,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 36 ms
52,084 KB
testcase_02 AC 202 ms
76,976 KB
testcase_03 AC 205 ms
77,036 KB
testcase_04 AC 276 ms
76,980 KB
testcase_05 AC 86 ms
75,896 KB
testcase_06 AC 254 ms
77,020 KB
testcase_07 AC 200 ms
79,016 KB
testcase_08 AC 59 ms
69,504 KB
testcase_09 AC 263 ms
76,424 KB
testcase_10 AC 275 ms
78,312 KB
testcase_11 AC 80 ms
76,244 KB
testcase_12 AC 278 ms
80,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
switch = [0]*(N)
ans = 0

for i in range(Q):
    L,R = map(int,input().split())
    for j in range(L-1,R):
        if switch[j] == 0:
            switch[j] = 1
            ans += 1
        elif switch[j] == 1:
            switch[j] = 0
            ans -= 1
    print(ans)
0