結果

問題 No.2154 あさかつの参加人数
ユーザー MichirakaraMichirakara
提出日時 2022-11-24 12:45:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 632 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-10-01 11:38:28
合計ジャッジ時間 40,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,158 ms
11,136 KB
testcase_06 AC 1,701 ms
20,864 KB
testcase_07 AC 1,062 ms
25,860 KB
testcase_08 AC 1,034 ms
28,084 KB
testcase_09 AC 359 ms
22,912 KB
testcase_10 AC 978 ms
24,448 KB
testcase_11 AC 1,856 ms
31,744 KB
testcase_12 AC 1,431 ms
24,448 KB
testcase_13 AC 906 ms
16,000 KB
testcase_14 AC 1,587 ms
23,680 KB
testcase_15 AC 961 ms
27,224 KB
testcase_16 AC 1,449 ms
26,496 KB
testcase_17 AC 1,738 ms
23,424 KB
testcase_18 AC 1,888 ms
27,904 KB
testcase_19 AC 145 ms
13,184 KB
testcase_20 AC 1,385 ms
28,528 KB
testcase_21 AC 289 ms
21,760 KB
testcase_22 AC 551 ms
32,512 KB
testcase_23 AC 1,633 ms
28,280 KB
testcase_24 AC 1,891 ms
31,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#リストを入れるよ
#fold(r)でtable[0,r)の累積和
#fold_(l,r)でtable[l,r)の累積和
class CumulativeSum:
  def __init__(self,table):
    self.table=table.copy()
    for i in range(1,len(self.table)):
      self.table[i]+=self.table[i-1]
  
  def fold(self,r:int):
    if r<=0:
      return 0
    return self.table[r-1]
  
  def fold_(self,l:int,r:int):
    if l==0:
      return self.fold(r)
    return self.fold(r)-self.fold(l)
d,n=map(int,input().split())
imos=[0]*(d+1)
for i in range(n):
  r,l=map(int,input().split())
  imos[l-1]+=1
  imos[r]-=1
c=CumulativeSum(imos)
for i in range(d-1,-1,-1):
  print(c.table[i])
0