結果

問題 No.2154 あさかつの参加人数
ユーザー timitimi
提出日時 2022-12-09 21:55:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 80,992 KB
最終ジャッジ日時 2024-10-14 21:48:05
合計ジャッジ時間 12,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 416 ms
80,640 KB
testcase_01 AC 419 ms
80,640 KB
testcase_02 AC 423 ms
80,812 KB
testcase_03 AC 424 ms
80,992 KB
testcase_04 AC 420 ms
80,384 KB
testcase_05 AC 232 ms
76,544 KB
testcase_06 AC 368 ms
77,824 KB
testcase_07 AC 243 ms
79,104 KB
testcase_08 AC 227 ms
79,232 KB
testcase_09 AC 108 ms
78,592 KB
testcase_10 AC 225 ms
78,820 KB
testcase_11 AC 375 ms
80,128 KB
testcase_12 AC 323 ms
78,848 KB
testcase_13 AC 227 ms
77,332 KB
testcase_14 AC 345 ms
78,664 KB
testcase_15 AC 221 ms
79,512 KB
testcase_16 AC 326 ms
78,848 KB
testcase_17 AC 376 ms
78,720 KB
testcase_18 AC 388 ms
79,488 KB
testcase_19 AC 95 ms
76,588 KB
testcase_20 AC 312 ms
79,324 KB
testcase_21 AC 104 ms
78,196 KB
testcase_22 AC 136 ms
80,088 KB
testcase_23 AC 363 ms
79,488 KB
testcase_24 AC 395 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
D=[0]*(N+1)
for i in range(M):
  a,b=map(int, input().split())
  D[N-a]+=1
  D[N-b+1]-=1
d=0
for i in range(N):
  d+=D[i]
  print(d)
0