結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
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 WA -
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 1 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 8 ms
6,528 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 7 ms
6,784 KB
testcase_26 AC 8 ms
7,168 KB
testcase_27 AC 12 ms
9,600 KB
testcase_28 AC 13 ms
10,368 KB
testcase_29 AC 5 ms
5,632 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 14 ms
10,368 KB
testcase_32 AC 5 ms
5,432 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 5 ms
5,760 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=1;
	rep(i,n-1) z+=b[i]!=b[i+1]-1;
	wt(z/2);
}
0