結果

問題 No.365 ジェンガソート
ユーザー yun_appyun_app
提出日時 2016-05-09 19:09:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 75,276 KB
実行使用メモリ 66,484 KB
最終ジャッジ日時 2024-10-12 02:15:44
合計ジャッジ時間 9,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,964 KB
testcase_01 AC 53 ms
50,052 KB
testcase_02 AC 53 ms
49,956 KB
testcase_03 AC 52 ms
49,824 KB
testcase_04 AC 54 ms
49,824 KB
testcase_05 AC 53 ms
50,028 KB
testcase_06 AC 53 ms
50,184 KB
testcase_07 AC 53 ms
49,752 KB
testcase_08 AC 52 ms
49,948 KB
testcase_09 AC 54 ms
50,044 KB
testcase_10 AC 53 ms
49,972 KB
testcase_11 AC 52 ms
50,032 KB
testcase_12 AC 53 ms
49,880 KB
testcase_13 AC 53 ms
50,080 KB
testcase_14 AC 52 ms
49,980 KB
testcase_15 AC 55 ms
49,736 KB
testcase_16 AC 223 ms
62,436 KB
testcase_17 AC 279 ms
66,176 KB
testcase_18 AC 103 ms
52,012 KB
testcase_19 AC 275 ms
66,140 KB
testcase_20 AC 161 ms
56,896 KB
testcase_21 AC 126 ms
53,908 KB
testcase_22 AC 212 ms
62,288 KB
testcase_23 AC 171 ms
58,048 KB
testcase_24 AC 216 ms
62,184 KB
testcase_25 AC 127 ms
54,008 KB
testcase_26 AC 203 ms
60,148 KB
testcase_27 AC 267 ms
65,968 KB
testcase_28 AC 200 ms
60,052 KB
testcase_29 AC 237 ms
62,640 KB
testcase_30 AC 201 ms
59,960 KB
testcase_31 AC 147 ms
56,596 KB
testcase_32 AC 142 ms
56,828 KB
testcase_33 AC 270 ms
66,256 KB
testcase_34 AC 121 ms
53,836 KB
testcase_35 AC 222 ms
62,204 KB
testcase_36 AC 286 ms
66,484 KB
testcase_37 AC 265 ms
66,036 KB
testcase_38 AC 282 ms
66,436 KB
testcase_39 AC 275 ms
65,856 KB
testcase_40 AC 267 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] lines = br.readLine().split(" ");
        HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
        int idx = 0;
        for(String st:lines){
            map.put(Integer.parseInt(st),idx++);
        }
        int tmp = n;
        int ans;
        for(ans = n;ans>0;ans--){
            if(map.get(ans) > tmp){
                break;
            }
            tmp = map.get(ans);
        }
        System.out.println(ans);
    }
}
0