結果

問題 No.1673 Lamps on a line
ユーザー hir355hir355
提出日時 2021-09-10 21:22:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 80,456 KB
最終ジャッジ日時 2024-06-11 22:13:51
合計ジャッジ時間 3,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 199 ms
77,184 KB
testcase_03 AC 203 ms
76,808 KB
testcase_04 AC 275 ms
77,056 KB
testcase_05 AC 86 ms
76,608 KB
testcase_06 AC 243 ms
76,744 KB
testcase_07 AC 201 ms
79,028 KB
testcase_08 AC 61 ms
68,096 KB
testcase_09 AC 263 ms
76,800 KB
testcase_10 AC 269 ms
78,084 KB
testcase_11 AC 80 ms
74,496 KB
testcase_12 AC 279 ms
80,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = [0] * n
ans = 0
for _ in range(q):
    l, r = map(int, input().split())
    for j in range(l - 1, r):
        a[j] ^= 1
        if a[j]:
            ans += 1
        else:
            ans -= 1
    print(ans)
0