結果

問題 No.365 ジェンガソート
ユーザー juger_jvjuger_jv
提出日時 2016-04-29 23:50:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 51,820 KB
最終ジャッジ日時 2024-10-04 19:32:19
合計ジャッジ時間 6,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,260 KB
testcase_01 AC 55 ms
50,436 KB
testcase_02 AC 54 ms
50,168 KB
testcase_03 AC 55 ms
49,928 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 52 ms
50,236 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
50,260 KB
testcase_11 AC 48 ms
49,852 KB
testcase_12 AC 47 ms
50,028 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class prob365
{
    public static void main(String args[])throws IOException
    {
	BufferedReader sc=new BufferedReader(new InputStreamReader(System.in));
	int n=Integer.parseInt(sc.readLine())+1;
	String s[]=sc.readLine().split(" ");
	int a[]=new int[n];
	for(int i=1;i<n;i++)a[i]=Integer.parseInt(s[i-1]);
	int ans=0;
	for(int i=n-1;i>=0;i--)
	    {
		int b[]=new int[n];
		for(int j=1;j<n;j++)b[j]=a[j];
		if(i!=a[i])
		    {
			for(int j=i;b[j]!=i;j--)
			    {
			       
				a[j-1]=b[j];
			    }
			a[i]=i;
			ans++;
		    }
		//for(int j=1;j<n;j++)System.out.print(a[j]+" ");
		//System.out.println();
	    }
	System.out.println(ans);
    }
}
0