結果

問題 No.1673 Lamps on a line
ユーザー miya145592miya145592
提出日時 2023-05-06 18:48:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-11-24 01:08:00
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 145 ms
82,048 KB
testcase_03 AC 154 ms
81,536 KB
testcase_04 AC 190 ms
86,528 KB
testcase_05 AC 103 ms
76,672 KB
testcase_06 AC 174 ms
84,224 KB
testcase_07 AC 149 ms
85,120 KB
testcase_08 AC 67 ms
67,200 KB
testcase_09 AC 177 ms
85,632 KB
testcase_10 AC 199 ms
87,040 KB
testcase_11 AC 101 ms
79,104 KB
testcase_12 AC 181 ms
90,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(Q)]
dp = [0 for _ in range(N)]
cnt = 0
for l, r in LR:
    l-=1
    r-=1
    for i in range(l, r+1):
        cnt-=dp[i]
        dp[i]=1-dp[i]
        cnt+=dp[i]
    print(cnt)
0