結果

問題 No.1673 Lamps on a line
ユーザー syunsuke1024syunsuke1024
提出日時 2021-09-19 14:46:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-07-01 17:56:35
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 184 ms
76,108 KB
testcase_03 AC 195 ms
75,904 KB
testcase_04 AC 271 ms
76,032 KB
testcase_05 AC 77 ms
72,064 KB
testcase_06 AC 231 ms
76,140 KB
testcase_07 AC 205 ms
79,076 KB
testcase_08 AC 65 ms
68,480 KB
testcase_09 AC 263 ms
76,544 KB
testcase_10 AC 279 ms
77,880 KB
testcase_11 AC 85 ms
75,264 KB
testcase_12 AC 279 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())

L = [0 for i in range(N+2)]
on = 0
for i in range(Q):
    l,r = map(int,input().split())
    for j in range(l,r+1):
        if L[j] == 1:
            on -= 1
            L[j] = 0
        else:
            on += 1
            L[j] = 1
    
    print(on)
0