結果

問題 No.2710 How many more?
ユーザー ID 21712ID 21712
提出日時 2024-11-07 22:27:53
言語 Go
(1.22.1)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 14,451 ms
コンパイル使用メモリ 223,604 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-11-07 22:28:12
合計ジャッジ時間 18,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 151 ms
5,760 KB
testcase_03 AC 101 ms
5,376 KB
testcase_04 AC 94 ms
5,504 KB
testcase_05 AC 62 ms
5,248 KB
testcase_06 AC 82 ms
5,248 KB
testcase_07 AC 54 ms
5,248 KB
testcase_08 AC 48 ms
5,248 KB
testcase_09 AC 137 ms
5,760 KB
testcase_10 AC 76 ms
5,248 KB
testcase_11 AC 115 ms
5,504 KB
testcase_12 AC 176 ms
6,016 KB
testcase_13 AC 194 ms
6,016 KB
testcase_14 AC 192 ms
6,016 KB
testcase_15 AC 193 ms
6,016 KB
testcase_16 AC 192 ms
6,016 KB
testcase_17 AC 201 ms
6,016 KB
testcase_18 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func main() {
	rd:=bf.NewReader(Stdin)
	wr:=bf.NewWriter(Stdout)
	var n,q int
	Fscan(rd,&n,&q)
	a:=make([]int,n)
	b:=make([]int,n)
	for i:=range a {
		Fscan(rd,&a[i])
	}
	copy(b,a)
	Sort(b)
	for ;q>0;q-- {
		var x,y int
		Fscan(rd,&x,&y)
		x--
		y--
		if a[x]<=a[y] {
			Fprintln(wr,0)
			continue
		}
		u,_:=BinarySearch(b,a[x])
		v,_:=BinarySearch(b,a[y]+1)
		Fprintln(wr,u-v)
	}
	wr.Flush()
}
0