結果

問題 No.1673 Lamps on a line
ユーザー nohakai3nohakai3
提出日時 2022-06-28 21:38:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,236 KB
最終ジャッジ日時 2024-11-21 16:05:02
合計ジャッジ時間 19,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,568 KB
testcase_01 AC 26 ms
24,236 KB
testcase_02 AC 226 ms
18,212 KB
testcase_03 AC 225 ms
22,912 KB
testcase_04 AC 381 ms
18,592 KB
testcase_05 AC 49 ms
23,680 KB
testcase_06 AC 333 ms
18,468 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
p=[0]*n
anss=[]
for i in range(q):
    l,r=map(int,input().split())
    for j in range(l-1,r):
        if p[j]==1:
            p[j]=0
        else:
            p[j]=1
    anss.append(p.count(1))

for x in anss:
    print(x)
0