結果

問題 No.2154 あさかつの参加人数
ユーザー MichirakaraMichirakara
提出日時 2022-11-08 23:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-10-01 11:36:30
合計ジャッジ時間 12,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 427 ms
84,096 KB
testcase_01 AC 420 ms
84,096 KB
testcase_02 AC 424 ms
84,480 KB
testcase_03 AC 379 ms
84,464 KB
testcase_04 AC 360 ms
84,096 KB
testcase_05 AC 215 ms
76,288 KB
testcase_06 AC 348 ms
79,616 KB
testcase_07 AC 230 ms
81,408 KB
testcase_08 AC 230 ms
82,176 KB
testcase_09 AC 112 ms
80,512 KB
testcase_10 AC 233 ms
80,896 KB
testcase_11 AC 380 ms
83,712 KB
testcase_12 AC 313 ms
80,988 KB
testcase_13 AC 228 ms
77,844 KB
testcase_14 AC 343 ms
80,640 KB
testcase_15 AC 228 ms
82,048 KB
testcase_16 AC 288 ms
81,792 KB
testcase_17 AC 314 ms
80,524 KB
testcase_18 AC 318 ms
82,048 KB
testcase_19 AC 92 ms
76,928 KB
testcase_20 AC 312 ms
82,176 KB
testcase_21 AC 107 ms
79,740 KB
testcase_22 AC 133 ms
83,956 KB
testcase_23 AC 349 ms
82,348 KB
testcase_24 AC 380 ms
83,100 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