結果

問題 No.2154 あさかつの参加人数
ユーザー pluto77pluto77
提出日時 2023-06-20 15:48:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 185 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,384 KB
最終ジャッジ日時 2024-06-28 02:48:40
合計ジャッジ時間 44,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,164 ms
10,752 KB
testcase_06 AC 1,753 ms
18,944 KB
testcase_07 AC 1,098 ms
23,168 KB
testcase_08 AC 1,081 ms
25,216 KB
testcase_09 AC 363 ms
20,992 KB
testcase_10 AC 1,000 ms
22,016 KB
testcase_11 AC 1,857 ms
28,160 KB
testcase_12 AC 1,493 ms
22,144 KB
testcase_13 AC 932 ms
14,848 KB
testcase_14 AC 1,665 ms
21,504 KB
testcase_15 AC 991 ms
24,576 KB
testcase_16 AC 1,592 ms
23,808 KB
testcase_17 AC 1,808 ms
21,120 KB
testcase_18 AC 1,846 ms
24,832 KB
testcase_19 AC 154 ms
12,672 KB
testcase_20 AC 1,522 ms
25,728 KB
testcase_21 AC 315 ms
19,712 KB
testcase_22 AC 598 ms
28,904 KB
testcase_23 AC 1,742 ms
25,212 KB
testcase_24 AC 1,986 ms
27,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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