結果

問題 No.365 ジェンガソート
ユーザー yun_appyun_app
提出日時 2016-05-09 19:06:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 894 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 57,332 KB
最終ジャッジ日時 2024-10-05 13:08:25
合計ジャッジ時間 9,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 51 ms
37,056 KB
testcase_02 AC 50 ms
36,532 KB
testcase_03 AC 49 ms
37,056 KB
testcase_04 WA -
testcase_05 AC 49 ms
36,976 KB
testcase_06 AC 50 ms
37,068 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 52 ms
36,992 KB
testcase_11 WA -
testcase_12 AC 50 ms
37,168 KB
testcase_13 AC 49 ms
37,132 KB
testcase_14 AC 50 ms
36,628 KB
testcase_15 AC 52 ms
36,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 117 ms
42,412 KB
testcase_22 AC 201 ms
52,692 KB
testcase_23 AC 166 ms
45,216 KB
testcase_24 AC 211 ms
52,892 KB
testcase_25 AC 122 ms
42,496 KB
testcase_26 WA -
testcase_27 AC 234 ms
56,420 KB
testcase_28 AC 189 ms
49,684 KB
testcase_29 AC 216 ms
53,508 KB
testcase_30 AC 182 ms
49,568 KB
testcase_31 AC 133 ms
45,464 KB
testcase_32 AC 126 ms
45,392 KB
testcase_33 AC 260 ms
56,592 KB
testcase_34 AC 109 ms
41,848 KB
testcase_35 WA -
testcase_36 AC 263 ms
57,332 KB
testcase_37 AC 250 ms
56,312 KB
testcase_38 WA -
testcase_39 AC 258 ms
56,416 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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(n);
        }
        System.out.println(ans);
    }
}
0