結果

問題 No.2154 あさかつの参加人数
ユーザー horiesinitihoriesiniti
提出日時 2022-12-28 17:25:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,360 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-11-23 18:48:13
合計ジャッジ時間 31,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,345 ms
16,384 KB
testcase_01 AC 1,350 ms
16,256 KB
testcase_02 AC 1,360 ms
16,128 KB
testcase_03 AC 1,336 ms
16,384 KB
testcase_04 AC 1,349 ms
16,128 KB
testcase_05 AC 619 ms
16,256 KB
testcase_06 AC 1,016 ms
16,256 KB
testcase_07 AC 741 ms
16,256 KB
testcase_08 AC 741 ms
16,256 KB
testcase_09 AC 352 ms
16,384 KB
testcase_10 AC 677 ms
16,256 KB
testcase_11 AC 1,204 ms
16,256 KB
testcase_12 AC 925 ms
16,384 KB
testcase_13 AC 579 ms
16,256 KB
testcase_14 AC 995 ms
16,384 KB
testcase_15 AC 704 ms
16,384 KB
testcase_16 AC 980 ms
16,256 KB
testcase_17 AC 1,081 ms
16,128 KB
testcase_18 AC 1,151 ms
16,384 KB
testcase_19 AC 178 ms
16,384 KB
testcase_20 AC 969 ms
16,384 KB
testcase_21 AC 315 ms
16,256 KB
testcase_22 AC 534 ms
16,384 KB
testcase_23 AC 1,080 ms
16,256 KB
testcase_24 AC 1,207 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

as=Array.new(500002,0)
n,m=gets.split(" ").map{|e| e.to_i}
m.times{
	r,l=gets.split(" ").map{|e| n-e.to_i}
	as[r]+=1
	as[l+1]-=1
}
ans=0
n.times{|i|
	ans+=as[i]
	puts ans
}
0