結果

問題 No.1673 Lamps on a line
ユーザー mahiro72mahiro72
提出日時 2021-10-03 02:16:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-07-20 21:19:09
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 292 ms
17,664 KB
testcase_03 AC 279 ms
17,664 KB
testcase_04 AC 479 ms
23,040 KB
testcase_05 AC 51 ms
11,392 KB
testcase_06 AC 442 ms
21,120 KB
testcase_07 AC 404 ms
24,704 KB
testcase_08 AC 34 ms
12,672 KB
testcase_09 AC 617 ms
28,160 KB
testcase_10 AC 610 ms
29,824 KB
testcase_11 AC 76 ms
14,208 KB
testcase_12 AC 815 ms
34,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
lr = [list(map(int,input().split()))for _ in range(Q)]
s = [0]*(N+1)

ans = 0
for l,r in lr:
    tmp1 = sum(s[l-1:r])
    for i in range(l-1,r):
        s[i]+=1
        s[i]%=2
    tmp2 = sum(s[l-1:r])
    ans+=(tmp2-tmp1)
    print(ans)
0