結果

問題 No.2740 Old Maid
ユーザー tentententen
提出日時 2024-05-07 18:14:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 1,858 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 95,540 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-11-30 13:09:31
合計ジャッジ時間 39,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 768 ms
71,452 KB
testcase_01 AC 781 ms
71,728 KB
testcase_02 AC 783 ms
71,780 KB
testcase_03 AC 786 ms
71,748 KB
testcase_04 AC 791 ms
71,724 KB
testcase_05 AC 770 ms
71,616 KB
testcase_06 AC 781 ms
71,728 KB
testcase_07 AC 860 ms
75,800 KB
testcase_08 AC 796 ms
71,960 KB
testcase_09 AC 807 ms
71,640 KB
testcase_10 AC 792 ms
71,708 KB
testcase_11 AC 758 ms
70,396 KB
testcase_12 AC 795 ms
68,808 KB
testcase_13 AC 861 ms
68,248 KB
testcase_14 AC 376 ms
48,496 KB
testcase_15 AC 434 ms
50,548 KB
testcase_16 AC 700 ms
56,560 KB
testcase_17 AC 370 ms
49,084 KB
testcase_18 AC 809 ms
68,748 KB
testcase_19 AC 487 ms
52,360 KB
testcase_20 AC 929 ms
67,732 KB
testcase_21 AC 388 ms
47,796 KB
testcase_22 AC 699 ms
56,804 KB
testcase_23 AC 299 ms
45,928 KB
testcase_24 AC 479 ms
52,360 KB
testcase_25 AC 972 ms
73,336 KB
testcase_26 AC 132 ms
40,556 KB
testcase_27 AC 252 ms
45,976 KB
testcase_28 AC 690 ms
56,520 KB
testcase_29 AC 663 ms
57,216 KB
testcase_30 AC 176 ms
41,876 KB
testcase_31 AC 1,136 ms
75,592 KB
testcase_32 AC 523 ms
53,008 KB
testcase_33 AC 1,104 ms
76,408 KB
testcase_34 AC 691 ms
57,400 KB
testcase_35 AC 459 ms
50,300 KB
testcase_36 AC 502 ms
52,384 KB
testcase_37 AC 622 ms
56,276 KB
testcase_38 AC 457 ms
50,660 KB
testcase_39 AC 354 ms
48,828 KB
testcase_40 AC 765 ms
66,240 KB
testcase_41 AC 932 ms
67,868 KB
testcase_42 AC 67 ms
37,696 KB
testcase_43 AC 69 ms
37,792 KB
testcase_44 AC 69 ms
37,852 KB
testcase_45 AC 72 ms
37,896 KB
testcase_46 AC 72 ms
37,892 KB
testcase_47 AC 68 ms
37,940 KB
testcase_48 AC 71 ms
37,552 KB
testcase_49 AC 70 ms
37,748 KB
testcase_50 AC 71 ms
37,508 KB
testcase_51 AC 70 ms
37,528 KB
testcase_52 AC 70 ms
37,844 KB
testcase_53 AC 71 ms
37,756 KB
testcase_54 AC 71 ms
37,988 KB
testcase_55 AC 68 ms
37,956 KB
testcase_56 AC 68 ms
37,860 KB
testcase_57 AC 67 ms
37,488 KB
testcase_58 AC 71 ms
37,748 KB
testcase_59 AC 70 ms
38,036 KB
testcase_60 AC 68 ms
37,596 KB
testcase_61 AC 68 ms
37,864 KB
testcase_62 AC 67 ms
38,068 KB
testcase_63 AC 68 ms
37,960 KB
testcase_64 AC 68 ms
37,564 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