結果

問題 No.2154 あさかつの参加人数
ユーザー ID 21712ID 21712
提出日時 2024-11-18 05:00:14
言語 Go
(1.22.1)
結果
AC  
実行時間 1,039 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 13,245 ms
コンパイル使用メモリ 228,736 KB
実行使用メモリ 12,360 KB
最終ジャッジ日時 2024-11-18 05:00:57
合計ジャッジ時間 35,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,032 ms
12,356 KB
testcase_01 AC 1,036 ms
12,360 KB
testcase_02 AC 1,039 ms
12,356 KB
testcase_03 AC 1,034 ms
12,360 KB
testcase_04 AC 1,038 ms
12,360 KB
testcase_05 AC 245 ms
7,840 KB
testcase_06 AC 637 ms
8,048 KB
testcase_07 AC 595 ms
10,048 KB
testcase_08 AC 617 ms
10,032 KB
testcase_09 AC 362 ms
7,796 KB
testcase_10 AC 515 ms
8,048 KB
testcase_11 AC 1,035 ms
10,140 KB
testcase_12 AC 666 ms
8,048 KB
testcase_13 AC 317 ms
7,948 KB
testcase_14 AC 688 ms
8,052 KB
testcase_15 AC 612 ms
10,032 KB
testcase_16 AC 723 ms
10,160 KB
testcase_17 AC 691 ms
8,056 KB
testcase_18 AC 828 ms
10,156 KB
testcase_19 AC 83 ms
6,820 KB
testcase_20 AC 731 ms
10,160 KB
testcase_21 AC 307 ms
7,800 KB
testcase_22 AC 595 ms
12,108 KB
testcase_23 AC 803 ms
10,156 KB
testcase_24 AC 944 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	t:=make([]int,n+1)
	for ;m>0;m-- {
		var l,r int
		Fscan(rd,&l,&r)
		t[r-1]--
		t[l]++
	}
	var s int
	for ;n>0;n-- {
		s+=t[n]
		Println(s)
	}
}
0