結果

問題 No.1673 Lamps on a line
ユーザー kohei2019kohei2019
提出日時 2022-06-27 23:56:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-11-20 08:06:51
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 208 ms
77,056 KB
testcase_03 AC 223 ms
78,048 KB
testcase_04 AC 305 ms
78,336 KB
testcase_05 AC 121 ms
77,312 KB
testcase_06 AC 257 ms
77,192 KB
testcase_07 AC 195 ms
79,232 KB
testcase_08 AC 62 ms
66,688 KB
testcase_09 AC 246 ms
76,928 KB
testcase_10 AC 250 ms
78,464 KB
testcase_11 AC 88 ms
76,572 KB
testcase_12 AC 260 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
ls = [0]*N
cnt = 0
for i in range(Q):
    L,R = map(int,input().split())
    L -= 1
    bf = 0
    for j in range(L,R):
        bf += ls[j]
    af = 0
    for j in range(L,R):
        ls[j]^=1
        af += ls[j]
    cnt += af-bf
    print(cnt)
0