結果

問題 No.2154 あさかつの参加人数
ユーザー achapiachapi
提出日時 2022-12-09 21:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,048 KB
最終ジャッジ日時 2024-10-14 20:27:52
合計ジャッジ時間 11,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 401 ms
98,048 KB
testcase_01 AC 413 ms
97,408 KB
testcase_02 AC 404 ms
97,664 KB
testcase_03 AC 398 ms
97,792 KB
testcase_04 AC 403 ms
97,536 KB
testcase_05 AC 216 ms
76,928 KB
testcase_06 AC 322 ms
85,504 KB
testcase_07 AC 239 ms
88,960 KB
testcase_08 AC 222 ms
90,880 KB
testcase_09 AC 113 ms
84,992 KB
testcase_10 AC 212 ms
88,064 KB
testcase_11 AC 356 ms
95,104 KB
testcase_12 AC 288 ms
88,704 KB
testcase_13 AC 202 ms
81,152 KB
testcase_14 AC 319 ms
88,192 KB
testcase_15 AC 226 ms
90,368 KB
testcase_16 AC 290 ms
90,496 KB
testcase_17 AC 337 ms
87,680 KB
testcase_18 AC 354 ms
91,776 KB
testcase_19 AC 94 ms
77,952 KB
testcase_20 AC 290 ms
92,288 KB
testcase_21 AC 109 ms
84,224 KB
testcase_22 AC 142 ms
91,520 KB
testcase_23 AC 335 ms
92,160 KB
testcase_24 AC 378 ms
94,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=[0]*(n+1)
for i in range(m):
    a,b=map(int,input().split())
    s[n-a]+=1
    s[n-b+1]-=1
for i in range(n-1):s[i+1]+=s[i]
s.pop()
print(*s,sep="\n")
0