結果

問題 No.2154 あさかつの参加人数
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:07:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 238 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,448 KB
最終ジャッジ日時 2024-07-17 09:08:16
合計ジャッジ時間 45,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,194 ms
10,880 KB
testcase_06 AC 1,780 ms
19,072 KB
testcase_07 AC 1,153 ms
23,284 KB
testcase_08 AC 1,098 ms
25,260 KB
testcase_09 AC 390 ms
20,992 KB
testcase_10 AC 1,023 ms
22,144 KB
testcase_11 AC 1,953 ms
28,324 KB
testcase_12 AC 1,541 ms
22,144 KB
testcase_13 AC 964 ms
14,976 KB
testcase_14 AC 1,699 ms
21,504 KB
testcase_15 AC 1,053 ms
24,584 KB
testcase_16 AC 1,631 ms
23,812 KB
testcase_17 AC 1,864 ms
21,376 KB
testcase_18 AC 1,969 ms
24,832 KB
testcase_19 AC 161 ms
12,928 KB
testcase_20 AC 1,587 ms
25,728 KB
testcase_21 AC 330 ms
19,968 KB
testcase_22 AC 627 ms
28,768 KB
testcase_23 AC 1,827 ms
25,308 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
imos=[0]*(N+1)
for m in range(M):
    r,l=map(int,input().split())
    l-=1
    imos[l]+=1
    imos[r]-=1
for i in range(1,N+1):
    imos[i]+=imos[i-1]
for i in range(N-1,-1,-1):
    ans=imos[i]
    print(ans)
0