結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 214 ms
76,800 KB
testcase_03 AC 217 ms
76,800 KB
testcase_04 AC 293 ms
76,672 KB
testcase_05 AC 100 ms
76,032 KB
testcase_06 AC 261 ms
76,800 KB
testcase_07 AC 222 ms
78,848 KB
testcase_08 AC 67 ms
67,712 KB
testcase_09 AC 272 ms
76,416 KB
testcase_10 AC 275 ms
77,952 KB
testcase_11 AC 90 ms
75,008 KB
testcase_12 AC 290 ms
79,872 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