結果

問題 No.1673 Lamps on a line
ユーザー TomoyarnTomoyarn
提出日時 2022-02-16 05:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-29 07:11:58
合計ジャッジ時間 3,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,952 KB
testcase_01 AC 36 ms
51,328 KB
testcase_02 AC 199 ms
76,464 KB
testcase_03 AC 209 ms
76,928 KB
testcase_04 AC 274 ms
76,800 KB
testcase_05 AC 83 ms
76,672 KB
testcase_06 AC 242 ms
77,056 KB
testcase_07 AC 192 ms
79,360 KB
testcase_08 AC 60 ms
67,840 KB
testcase_09 AC 250 ms
76,636 KB
testcase_10 AC 260 ms
78,040 KB
testcase_11 AC 76 ms
75,008 KB
testcase_12 AC 271 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder No.1673 Lamps on a line
N, Q = map(int, input().split())

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