結果

問題 No.365 ジェンガソート
ユーザー juger_jvjuger_jv
提出日時 2016-05-01 23:49:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 60,484 KB
最終ジャッジ日時 2024-10-12 02:13:45
合計ジャッジ時間 8,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,008 KB
testcase_01 AC 52 ms
50,136 KB
testcase_02 AC 52 ms
49,928 KB
testcase_03 AC 54 ms
50,112 KB
testcase_04 AC 54 ms
50,332 KB
testcase_05 AC 54 ms
50,084 KB
testcase_06 AC 52 ms
49,748 KB
testcase_07 AC 51 ms
50,128 KB
testcase_08 AC 50 ms
49,924 KB
testcase_09 AC 51 ms
50,216 KB
testcase_10 AC 51 ms
50,012 KB
testcase_11 AC 49 ms
50,204 KB
testcase_12 AC 52 ms
50,136 KB
testcase_13 AC 51 ms
50,036 KB
testcase_14 AC 52 ms
50,028 KB
testcase_15 AC 53 ms
49,752 KB
testcase_16 AC 165 ms
57,548 KB
testcase_17 AC 209 ms
60,484 KB
testcase_18 AC 94 ms
51,808 KB
testcase_19 AC 208 ms
60,136 KB
testcase_20 AC 128 ms
53,980 KB
testcase_21 AC 113 ms
53,872 KB
testcase_22 AC 180 ms
58,244 KB
testcase_23 AC 147 ms
58,544 KB
testcase_24 AC 173 ms
58,032 KB
testcase_25 AC 111 ms
51,960 KB
testcase_26 AC 149 ms
57,132 KB
testcase_27 AC 207 ms
60,096 KB
testcase_28 AC 156 ms
56,752 KB
testcase_29 AC 188 ms
60,124 KB
testcase_30 AC 154 ms
57,812 KB
testcase_31 AC 110 ms
53,848 KB
testcase_32 AC 121 ms
54,140 KB
testcase_33 AC 207 ms
60,124 KB
testcase_34 AC 107 ms
52,044 KB
testcase_35 AC 172 ms
57,824 KB
testcase_36 AC 198 ms
60,376 KB
testcase_37 AC 207 ms
59,968 KB
testcase_38 AC 197 ms
60,252 KB
testcase_39 AC 209 ms
60,028 KB
testcase_40 AC 209 ms
60,112 KB
権限があれば一括ダウンロードができます

ソースコード

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());
	String s[]=sc.readLine().split(" ");
	int a[]=new int[n];
	for(int i=0;i<n;i++)a[i]=Integer.parseInt(s[i]);
	int ans=n;
	int target=n;
	for(int i=n-1;i>=0;i--)
	    {
		if(target==a[i])
		    {
			ans--;
			target--;
		    }
	    }
	System.out.println(ans);
    }
}
0