結果
問題 | No.1673 Lamps on a line |
ユーザー | harurun |
提出日時 | 2021-09-10 22:29:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 192 ms / 2,000 ms |
コード長 | 1,596 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 82,712 KB |
実行使用メモリ | 105,428 KB |
最終ジャッジ日時 | 2024-06-12 01:17:13 |
合計ジャッジ時間 | 2,495 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,224 KB |
testcase_02 | AC | 110 ms
87,488 KB |
testcase_03 | AC | 108 ms
87,680 KB |
testcase_04 | AC | 192 ms
94,976 KB |
testcase_05 | AC | 81 ms
76,672 KB |
testcase_06 | AC | 127 ms
92,632 KB |
testcase_07 | AC | 108 ms
92,708 KB |
testcase_08 | AC | 53 ms
65,024 KB |
testcase_09 | AC | 122 ms
98,304 KB |
testcase_10 | AC | 135 ms
99,968 KB |
testcase_11 | AC | 69 ms
78,976 KB |
testcase_12 | AC | 128 ms
105,428 KB |
ソースコード
class INPUT: def __init__(self): self._l=open(0).read().split() self._length=len(self._l) self._index=0 return def stream(self,k=1,f=int,f2=False): assert(-1<k) if self._length==self._index or self._length-self._index<k: raise Exception("There is no input!") elif f!=str: if k==0: ret=list(map(f,self._l[self._index:])) self._index=self._length return ret if k==1 and not f2: ret=f(self._l[self._index]) self._index+=1 return ret if k==1 and f2: ret=[f(self._l[self._index])] self._index+=1 return ret ret=[] for _ in [0]*k: ret.append(f(self._l[self._index])) self._index+=1 return ret else: if k==0: ret=list(self._l[self._index:]) self._index=self._length return ret if k==1 and not f2: ret=self._l[self._index] self._index+=1 return ret if k==1 and f2: ret=[self._l[self._index]] self._index+=1 return ret ret=[] for _ in [0]*k: ret.append(self._l[self._index]) self._index+=1 return ret pin=INPUT().stream #pin(number[default:1],f[default:int],f2[default:False]) #if number==0 -> return left all #listを変数で受け取るとき、必ずlistをTrueにすること。 def main(): N,Q=pin(2) cnt=0 d=[0]*N for i in range(Q): L,R=pin(2) for j in range(L-1,R): if d[j]==0: cnt+=1 d[j]=1 else: cnt-=1 d[j]=0 print(cnt) return main()