結果

問題 No.2803 Bocching Star
ユーザー tailstails
提出日時 2024-07-16 15:39:06
言語 cLay
(20240714-1)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 6,756 ms
コンパイル使用メモリ 219,084 KB
実行使用メモリ 14,228 KB
最終ジャッジ日時 2024-07-16 15:39:16
合計ジャッジ時間 8,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 15 ms
13,116 KB
testcase_05 AC 7 ms
9,600 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 7 ms
8,008 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 14 ms
10,484 KB
testcase_10 AC 16 ms
11,956 KB
testcase_11 AC 16 ms
11,616 KB
testcase_12 AC 7 ms
8,648 KB
testcase_13 AC 14 ms
11,260 KB
testcase_14 AC 9 ms
10,340 KB
testcase_15 AC 15 ms
11,628 KB
testcase_16 AC 10 ms
9,904 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 14 ms
9,916 KB
testcase_20 AC 9 ms
8,864 KB
testcase_21 AC 7 ms
9,080 KB
testcase_22 AC 7 ms
7,492 KB
testcase_23 AC 17 ms
12,028 KB
testcase_24 AC 17 ms
12,024 KB
testcase_25 AC 18 ms
13,340 KB
testcase_26 AC 17 ms
12,160 KB
testcase_27 AC 18 ms
12,032 KB
testcase_28 AC 19 ms
13,396 KB
testcase_29 AC 18 ms
11,900 KB
testcase_30 AC 18 ms
12,028 KB
testcase_31 AC 22 ms
13,100 KB
testcase_32 AC 20 ms
14,228 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 3 ms
7,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@n,@s,@p[n],q[],v[],z[],a=0;
sortA_index(n,p,q);
rep(j,n){
	v[q[j]]=j;
}
rep(i,n){
	int j=v[i];
	if((j==0||p[j]-p[j-1]>s)&&(j==n-1||p[j+1]-p[j]>s)){
		z[a++]=i+1;
	}
}
wt(a);
wt(z(a));
0