結果

問題 No.1673 Lamps on a line
ユーザー p ,pp ,p
提出日時 2021-10-01 01:04:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 254 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-07-18 05:56:49
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,256 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 380 ms
10,752 KB
testcase_03 AC 356 ms
10,752 KB
testcase_04 AC 624 ms
10,880 KB
testcase_05 AC 64 ms
10,752 KB
testcase_06 AC 612 ms
10,752 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A=[]
i=0
Q=0
l=0
r=0
k=0
s=0
n,q=map(int,input().split())
for i in range(0,n,1):
    A.append(0)
a=list(map(int,A))
for Q in range(0,q,1):
    l,r=map(int,input().split())
    for k in range(l-1,r,1):
        a[k]+=1
    print(sum([p%2 != 0 for p in a]))
0