結果

問題 No.1673 Lamps on a line
ユーザー 👑 rin204rin204
提出日時 2021-09-18 10:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 80,220 KB
最終ジャッジ日時 2024-06-30 07:01:52
合計ジャッジ時間 3,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,804 KB
testcase_01 AC 37 ms
53,208 KB
testcase_02 AC 199 ms
76,884 KB
testcase_03 AC 210 ms
76,832 KB
testcase_04 AC 278 ms
77,028 KB
testcase_05 AC 90 ms
76,500 KB
testcase_06 AC 248 ms
76,872 KB
testcase_07 AC 210 ms
79,316 KB
testcase_08 AC 62 ms
69,196 KB
testcase_09 AC 261 ms
76,800 KB
testcase_10 AC 282 ms
78,200 KB
testcase_11 AC 82 ms
75,928 KB
testcase_12 AC 287 ms
80,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
state = [False] * n
ans = 0

for _ in range(q):
    l, r = map(int, input().split())
    for i in range(l - 1, r):
        state[i] ^= True
        ans += state[i] * 2 - 1
    print(ans)
0