結果

問題 No.2740 Old Maid
ユーザー tentententen
提出日時 2024-05-07 18:14:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 946 ms / 2,000 ms
コード長 1,858 bytes
コンパイル時間 3,157 ms
コンパイル使用メモリ 91,952 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-05-07 18:15:40
合計ジャッジ時間 32,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 703 ms
71,776 KB
testcase_01 AC 790 ms
71,696 KB
testcase_02 AC 801 ms
71,680 KB
testcase_03 AC 728 ms
71,656 KB
testcase_04 AC 689 ms
71,680 KB
testcase_05 AC 675 ms
71,536 KB
testcase_06 AC 700 ms
71,796 KB
testcase_07 AC 688 ms
71,384 KB
testcase_08 AC 696 ms
71,884 KB
testcase_09 AC 658 ms
71,884 KB
testcase_10 AC 682 ms
71,612 KB
testcase_11 AC 676 ms
70,304 KB
testcase_12 AC 657 ms
68,884 KB
testcase_13 AC 717 ms
67,936 KB
testcase_14 AC 315 ms
48,236 KB
testcase_15 AC 381 ms
50,484 KB
testcase_16 AC 543 ms
56,460 KB
testcase_17 AC 313 ms
48,676 KB
testcase_18 AC 678 ms
68,868 KB
testcase_19 AC 416 ms
52,876 KB
testcase_20 AC 937 ms
67,812 KB
testcase_21 AC 344 ms
48,084 KB
testcase_22 AC 571 ms
56,820 KB
testcase_23 AC 249 ms
46,832 KB
testcase_24 AC 419 ms
52,812 KB
testcase_25 AC 800 ms
77,244 KB
testcase_26 AC 112 ms
40,080 KB
testcase_27 AC 220 ms
46,212 KB
testcase_28 AC 559 ms
56,568 KB
testcase_29 AC 602 ms
57,368 KB
testcase_30 AC 161 ms
42,088 KB
testcase_31 AC 946 ms
72,604 KB
testcase_32 AC 446 ms
54,112 KB
testcase_33 AC 782 ms
72,032 KB
testcase_34 AC 549 ms
57,324 KB
testcase_35 AC 377 ms
50,196 KB
testcase_36 AC 427 ms
52,880 KB
testcase_37 AC 546 ms
56,252 KB
testcase_38 AC 397 ms
50,824 KB
testcase_39 AC 291 ms
49,072 KB
testcase_40 AC 629 ms
66,508 KB
testcase_41 AC 770 ms
67,956 KB
testcase_42 AC 63 ms
37,632 KB
testcase_43 AC 59 ms
37,612 KB
testcase_44 AC 59 ms
37,504 KB
testcase_45 AC 59 ms
37,736 KB
testcase_46 AC 59 ms
38,108 KB
testcase_47 AC 63 ms
37,972 KB
testcase_48 AC 61 ms
38,168 KB
testcase_49 AC 59 ms
37,648 KB
testcase_50 AC 62 ms
37,848 KB
testcase_51 AC 63 ms
37,840 KB
testcase_52 AC 62 ms
37,752 KB
testcase_53 AC 63 ms
37,600 KB
testcase_54 AC 60 ms
38,020 KB
testcase_55 AC 62 ms
37,780 KB
testcase_56 AC 58 ms
38,016 KB
testcase_57 AC 62 ms
38,032 KB
testcase_58 AC 62 ms
38,120 KB
testcase_59 AC 61 ms
37,588 KB
testcase_60 AC 61 ms
37,828 KB
testcase_61 AC 58 ms
37,864 KB
testcase_62 AC 63 ms
37,488 KB
testcase_63 AC 60 ms
37,848 KB
testcase_64 AC 60 ms
37,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeMap<Integer, Integer> values = new TreeMap<>();
        int[] places = new int[n];
        for (int i = 0; i < n; i++) {
            int v = sc.nextInt();
            values.put(i, v);
            places[v - 1] = i;
        }
        List<Integer> ans = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if (values.containsKey(places[i]) && values.lastKey() != places[i]) {
                ans.add(values.get(places[i]));
                values.remove(places[i]);
                Integer key = values.higherKey(places[i]);
                ans.add(values.get(key));
                values.remove(key);
            }
        }
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0