結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー tentententen
提出日時 2021-06-07 12:59:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,758 ms / 2,000 ms
コード長 1,884 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 57,188 KB
最終ジャッジ日時 2024-05-05 01:55:35
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,188 KB
testcase_01 AC 54 ms
37,204 KB
testcase_02 AC 1,758 ms
57,188 KB
testcase_03 AC 52 ms
37,300 KB
testcase_04 AC 53 ms
37,308 KB
testcase_05 AC 54 ms
37,252 KB
testcase_06 AC 54 ms
37,448 KB
testcase_07 AC 86 ms
38,348 KB
testcase_08 AC 87 ms
38,588 KB
testcase_09 AC 115 ms
40,084 KB
testcase_10 AC 218 ms
43,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        City[] cities = new City[n];
        for (int i = 0; i < n; i++) {
            cities[i] = new City(i + 1, sc.nextInt());
        }
        Arrays.sort(cities);
        ArrayList<City> deq = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if (i % 2 == 0) {
                deq.add(0, cities[i]);
            } else {
                deq.add(cities[i]);
            }
        }
        for (int i = 0; i < n; i++) {
            if (deq.get(i).idx > 1)  {
                continue;
            }
            StringBuilder sb = new StringBuilder();
            for (int j = 0; j < n; j++) {
               sb.append(deq.get((i + j) % n).idx).append(" ");
            }
            sb.append(1);
            System.out.println(sb);
            return;
        }
    }
    static class City implements Comparable<City> {
        int idx;
        int value;
        
        public City(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(City another) {
            return value - another.value;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0