結果

問題 No.2154 あさかつの参加人数
ユーザー titiatitia
提出日時 2022-12-09 21:25:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,343 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-10-14 19:45:55
合計ジャッジ時間 27,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,321 ms
30,204 KB
testcase_01 AC 1,299 ms
30,208 KB
testcase_02 AC 1,342 ms
30,208 KB
testcase_03 AC 1,343 ms
30,336 KB
testcase_04 AC 1,313 ms
30,208 KB
testcase_05 AC 556 ms
10,752 KB
testcase_06 AC 938 ms
18,944 KB
testcase_07 AC 721 ms
23,168 KB
testcase_08 AC 722 ms
25,088 KB
testcase_09 AC 340 ms
20,864 KB
testcase_10 AC 643 ms
22,016 KB
testcase_11 AC 1,157 ms
28,160 KB
testcase_12 AC 876 ms
21,888 KB
testcase_13 AC 500 ms
14,720 KB
testcase_14 AC 951 ms
21,504 KB
testcase_15 AC 689 ms
24,448 KB
testcase_16 AC 954 ms
23,552 KB
testcase_17 AC 1,010 ms
21,120 KB
testcase_18 AC 1,116 ms
24,832 KB
testcase_19 AC 116 ms
12,800 KB
testcase_20 AC 938 ms
25,472 KB
testcase_21 AC 298 ms
19,712 KB
testcase_22 AC 553 ms
28,672 KB
testcase_23 AC 1,057 ms
25,216 KB
testcase_24 AC 1,209 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

S=[0]*(N+5)

for i in range(M):
    l,r=map(int,input().split())
    S[r]+=1
    S[l+1]-=1

for i in range(1,N+5):
    S[i]+=S[i-1]

for i in range(N,0,-1):
    print(S[i])
0