結果

問題 No.2154 あさかつの参加人数
ユーザー RustyRusty
提出日時 2023-01-05 00:29:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 225 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-11-28 07:19:50
合計ジャッジ時間 44,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,212 ms
10,752 KB
testcase_06 AC 1,862 ms
18,944 KB
testcase_07 AC 1,224 ms
23,040 KB
testcase_08 AC 1,190 ms
25,088 KB
testcase_09 AC 418 ms
20,864 KB
testcase_10 AC 993 ms
22,016 KB
testcase_11 AC 1,830 ms
28,160 KB
testcase_12 AC 1,451 ms
22,016 KB
testcase_13 AC 896 ms
14,720 KB
testcase_14 AC 1,553 ms
21,376 KB
testcase_15 AC 985 ms
24,320 KB
testcase_16 AC 1,528 ms
23,680 KB
testcase_17 AC 1,705 ms
21,120 KB
testcase_18 AC 1,804 ms
24,832 KB
testcase_19 AC 150 ms
12,800 KB
testcase_20 AC 1,472 ms
25,600 KB
testcase_21 AC 340 ms
19,840 KB
testcase_22 AC 662 ms
28,672 KB
testcase_23 AC 1,770 ms
25,216 KB
testcase_24 AC 1,906 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
dp = [0]*(n+1)
for i in range(m):
    l,r = map(int,input().split())
    dp[l] += 1
    dp[r-1] -= 1

for i in range(1,n):
    dp[-i-1] = dp[-i]+dp[-i-1]
for i in range(1,n+1):
    print(dp[-i])
0