結果

問題 No.2154 あさかつの参加人数
ユーザー ID 21712ID 21712
提出日時 2024-11-18 05:02:28
言語 Go
(1.22.1)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 10,211 ms
コンパイル使用メモリ 233,220 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-18 05:02:54
合計ジャッジ時間 21,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
11,008 KB
testcase_01 AC 469 ms
11,008 KB
testcase_02 AC 445 ms
11,008 KB
testcase_03 AC 445 ms
11,008 KB
testcase_04 AC 468 ms
11,008 KB
testcase_05 AC 242 ms
6,144 KB
testcase_06 AC 382 ms
6,400 KB
testcase_07 AC 235 ms
8,048 KB
testcase_08 AC 195 ms
8,832 KB
testcase_09 AC 42 ms
5,632 KB
testcase_10 AC 189 ms
7,296 KB
testcase_11 AC 388 ms
9,984 KB
testcase_12 AC 330 ms
7,936 KB
testcase_13 AC 199 ms
6,144 KB
testcase_14 AC 346 ms
7,296 KB
testcase_15 AC 184 ms
8,832 KB
testcase_16 AC 344 ms
8,448 KB
testcase_17 AC 388 ms
7,424 KB
testcase_18 AC 394 ms
8,960 KB
testcase_19 AC 22 ms
5,248 KB
testcase_20 AC 324 ms
8,832 KB
testcase_21 AC 34 ms
5,760 KB
testcase_22 AC 70 ms
9,984 KB
testcase_23 AC 362 ms
8,960 KB
testcase_24 AC 425 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func main() {
	rd:=bf.NewReader(Stdin)
	wr:=bf.NewWriter(Stdout)
	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]
		Fprintln(wr,s)
	}
	wr.Flush()
}
0