結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 283 ms
11,264 KB
testcase_03 AC 261 ms
11,392 KB
testcase_04 AC 441 ms
11,648 KB
testcase_05 AC 54 ms
11,008 KB
testcase_06 AC 417 ms
11,392 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

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
    ans=0
    for x in p:
        if x==1:
            ans+=1
    anss.append(ans)

for x in anss:
    print(x)
0