結果

問題 No.1110 好きな歌
ユーザー 小野寺健小野寺健
提出日時 2021-12-20 09:21:16
言語 Go
(1.22.1)
結果
AC  
実行時間 218 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 13,248 ms
コンパイル使用メモリ 226,048 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-09-15 15:14:06
合計ジャッジ時間 21,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 118 ms
5,888 KB
testcase_25 AC 144 ms
6,784 KB
testcase_26 AC 76 ms
5,376 KB
testcase_27 AC 145 ms
6,656 KB
testcase_28 AC 79 ms
5,376 KB
testcase_29 AC 173 ms
7,424 KB
testcase_30 AC 74 ms
5,376 KB
testcase_31 AC 48 ms
5,376 KB
testcase_32 AC 193 ms
8,320 KB
testcase_33 AC 84 ms
5,632 KB
testcase_34 AC 119 ms
5,888 KB
testcase_35 AC 180 ms
8,960 KB
testcase_36 AC 19 ms
5,376 KB
testcase_37 AC 56 ms
5,376 KB
testcase_38 AC 169 ms
7,424 KB
testcase_39 AC 128 ms
6,016 KB
testcase_40 AC 139 ms
6,912 KB
testcase_41 AC 13 ms
5,376 KB
testcase_42 AC 169 ms
8,320 KB
testcase_43 AC 170 ms
7,808 KB
testcase_44 AC 188 ms
9,088 KB
testcase_45 AC 207 ms
9,088 KB
testcase_46 AC 202 ms
9,088 KB
testcase_47 AC 218 ms
8,960 KB
testcase_48 AC 203 ms
8,960 KB
testcase_49 AC 177 ms
9,088 KB
testcase_50 AC 202 ms
9,088 KB
testcase_51 AC 194 ms
8,960 KB
testcase_52 AC 204 ms
9,088 KB
testcase_53 AC 217 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"bufio"
	"os"
	"sort"
)

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
	defer w.Flush()
	var N, D int
	fmt.Fscan(r, &N, &D)
	a := make([]int, N)
	b := make([]int, N)
	for i := 0; i < N; i++ {
		var x int
		fmt.Fscan(r, &x)
		a[i] = x
		b[i] = x
	}
	sort.Ints(b)
	for _, x := range a {
		j := sort.Search(N, func(i int) bool { return b[i] > x - D})
		if j < N {
			fmt.Fprintln(w, j)
		} else {
			fmt.Fprintln(w, 0)
		}
	}
}
0