結果

問題 No.1673 Lamps on a line
ユーザー NoneNone
提出日時 2021-10-04 16:19:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 80,332 KB
最終ジャッジ日時 2024-07-22 15:52:18
合計ジャッジ時間 3,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,148 KB
testcase_01 AC 35 ms
52,956 KB
testcase_02 AC 187 ms
76,848 KB
testcase_03 AC 193 ms
76,740 KB
testcase_04 AC 261 ms
77,108 KB
testcase_05 AC 80 ms
76,140 KB
testcase_06 AC 234 ms
76,648 KB
testcase_07 AC 178 ms
79,040 KB
testcase_08 AC 55 ms
69,820 KB
testcase_09 AC 237 ms
76,612 KB
testcase_10 AC 254 ms
78,092 KB
testcase_11 AC 76 ms
75,812 KB
testcase_12 AC 255 ms
80,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int, input().split())
A=[0]*N
S=0
for _ in range(Q):
    l,r=map(int, input().split())
    l-=1
    r-=1
    for i in range(l,r+1):
        if A[i]==0:
            S+=1
            A[i]=1
        else:
            S-=1
            A[i]=0
    print(S)
0