結果

問題 No.1673 Lamps on a line
ユーザー harapecoharapeco
提出日時 2022-03-30 11:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 80,336 KB
最終ジャッジ日時 2024-11-14 10:59:56
合計ジャッジ時間 3,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,080 KB
testcase_01 AC 37 ms
52,756 KB
testcase_02 AC 197 ms
76,892 KB
testcase_03 AC 202 ms
77,156 KB
testcase_04 AC 279 ms
76,980 KB
testcase_05 AC 86 ms
76,472 KB
testcase_06 AC 241 ms
76,800 KB
testcase_07 AC 198 ms
79,292 KB
testcase_08 AC 58 ms
68,860 KB
testcase_09 AC 253 ms
76,688 KB
testcase_10 AC 271 ms
78,152 KB
testcase_11 AC 78 ms
75,312 KB
testcase_12 AC 279 ms
80,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
switch = [0]*(N)
ans = 0

for i in range(Q):
    L,R = map(int,input().split())
    for j in range(L-1,R):
        if switch[j] == 0:
            switch[j] = 1
            ans += 1
        else:
            switch[j] = 0
            ans -= 1
    print(ans)
0