結果

問題 No.2803 Bocching Star
ユーザー ID 21712ID 21712
提出日時 2024-11-05 15:05:47
言語 Go
(1.22.1)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 12,343 ms
コンパイル使用メモリ 239,848 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-11-05 15:06:12
合計ジャッジ時間 24,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 80 ms
6,816 KB
testcase_04 AC 280 ms
7,928 KB
testcase_05 AC 95 ms
6,816 KB
testcase_06 AC 24 ms
6,820 KB
testcase_07 AC 155 ms
6,816 KB
testcase_08 AC 55 ms
6,820 KB
testcase_09 AC 180 ms
7,924 KB
testcase_10 AC 243 ms
10,048 KB
testcase_11 AC 457 ms
7,928 KB
testcase_12 AC 154 ms
6,820 KB
testcase_13 AC 191 ms
7,928 KB
testcase_14 AC 126 ms
6,816 KB
testcase_15 AC 559 ms
7,932 KB
testcase_16 AC 277 ms
7,908 KB
testcase_17 AC 73 ms
6,816 KB
testcase_18 AC 28 ms
6,816 KB
testcase_19 AC 222 ms
7,928 KB
testcase_20 AC 172 ms
6,820 KB
testcase_21 AC 112 ms
6,820 KB
testcase_22 AC 170 ms
6,820 KB
testcase_23 AC 322 ms
10,044 KB
testcase_24 AC 719 ms
10,048 KB
testcase_25 AC 578 ms
10,048 KB
testcase_26 AC 640 ms
10,140 KB
testcase_27 AC 385 ms
10,044 KB
testcase_28 AC 498 ms
8,060 KB
testcase_29 AC 376 ms
10,044 KB
testcase_30 AC 638 ms
10,044 KB
testcase_31 AC 304 ms
10,048 KB
testcase_32 AC 741 ms
10,044 KB
testcase_33 AC 8 ms
6,816 KB
testcase_34 AC 9 ms
6,820 KB
testcase_35 AC 8 ms
6,816 KB
testcase_36 AC 8 ms
6,816 KB
testcase_37 AC 9 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "sort"
import . "os"
import bf "bufio"
import "math/rand"
func main() {
	rd:=bf.NewReader(Stdin)
	var n, s int
	Fscan(rd,&n,&s)
	p:=make([]int,n)
	for i:=range p {
		Fscan(rd,&p[i])
	}
	idx:=rand.Perm(n)
	Slice(idx,func(i,j int)bool {
		a:=idx[i]
		b:=idx[j]
	return p[a]<p[b]
	})
	f:=make([]int,0,n)
	for j,i:=range idx {
		if j>0&&p[i]-p[idx[j-1]]<=s {
			continue
		}
		if j+1<n&&p[idx[j+1]]-p[i]<=s {
			continue
		}
		f=append(f,i)
	}
	Ints(f)
	Println(len(f))
	for i,v:=range f {
		if i>0 {
			Print(" ")
		}
		Print(v+1)
	}
	Println()

	
}
0