結果

問題 No.1673 Lamps on a line
ユーザー TomoyarnTomoyarn
提出日時 2022-02-16 05:25:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 278 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 86,264 KB
最終ジャッジ日時 2024-06-29 07:11:54
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
56,832 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 222 ms
76,812 KB
testcase_03 AC 201 ms
76,704 KB
testcase_04 AC 280 ms
77,184 KB
testcase_05 AC 87 ms
76,928 KB
testcase_06 AC 243 ms
76,736 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

lamp = [0] * N

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