結果

問題 No.1673 Lamps on a line
ユーザー rlangevinrlangevin
提出日時 2023-02-06 22:15:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 80,232 KB
最終ジャッジ日時 2024-07-05 00:08:53
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,852 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 180 ms
76,508 KB
testcase_03 AC 188 ms
76,116 KB
testcase_04 AC 260 ms
76,636 KB
testcase_05 AC 74 ms
73,484 KB
testcase_06 AC 226 ms
76,044 KB
testcase_07 AC 195 ms
78,904 KB
testcase_08 AC 59 ms
69,824 KB
testcase_09 AC 253 ms
77,084 KB
testcase_10 AC 267 ms
78,220 KB
testcase_11 AC 79 ms
75,772 KB
testcase_12 AC 270 ms
80,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q  = map(int, input().split())
ans = 0
D = [0] * (N + 1)
for _ in range(Q):
    L, R = map(int, input().split())
    for i in range(L, R + 1):
        D[i] = 1 - D[i]
        if D[i]:
            ans += 1
        else:
            ans -= 1
    print(ans)
0