結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 119 ms
82,420 KB
testcase_03 AC 119 ms
82,260 KB
testcase_04 AC 150 ms
86,288 KB
testcase_05 AC 76 ms
77,056 KB
testcase_06 AC 136 ms
84,864 KB
testcase_07 AC 117 ms
85,632 KB
testcase_08 AC 52 ms
67,072 KB
testcase_09 AC 158 ms
85,888 KB
testcase_10 AC 171 ms
87,424 KB
testcase_11 AC 84 ms
79,448 KB
testcase_12 AC 163 ms
91,144 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