結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー tailstails
提出日時 2021-03-12 22:25:43
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 5,097 ms
コンパイル使用メモリ 219,720 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-05 15:07:17
合計ジャッジ時間 8,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 7 ms
6,656 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 6 ms
6,656 KB
testcase_26 AC 8 ms
7,168 KB
testcase_27 AC 12 ms
9,600 KB
testcase_28 AC 13 ms
10,496 KB
testcase_29 AC 5 ms
5,632 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 14 ms
10,368 KB
testcase_32 AC 5 ms
5,504 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 5 ms
5,888 KB
testcase_35 AC 13 ms
9,984 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	int@n;
	VI@a(n);
	VI b(n);
	rep(i,n) b[i]=i;
	sortV(a,b);
	int z=0;
	rep(i,n-1) z+=b[i]<b[i+1]-1;
	z+=b[n-1]<n-1;
	wt(z);
}
0