結果

問題 No.2449 square_permutation
ユーザー tentententen
提出日時 2024-04-03 14:07:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,420 ms / 2,000 ms
コード長 1,856 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 91,636 KB
実行使用メモリ 113,424 KB
最終ジャッジ日時 2024-09-30 23:57:57
合計ジャッジ時間 25,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
50,904 KB
testcase_01 AC 62 ms
51,144 KB
testcase_02 AC 66 ms
51,028 KB
testcase_03 AC 67 ms
51,072 KB
testcase_04 AC 68 ms
51,088 KB
testcase_05 AC 82 ms
51,112 KB
testcase_06 AC 518 ms
75,776 KB
testcase_07 AC 574 ms
79,584 KB
testcase_08 AC 705 ms
78,976 KB
testcase_09 AC 644 ms
83,404 KB
testcase_10 AC 892 ms
94,912 KB
testcase_11 AC 1,117 ms
105,576 KB
testcase_12 AC 1,088 ms
106,128 KB
testcase_13 AC 1,371 ms
112,468 KB
testcase_14 AC 1,377 ms
112,388 KB
testcase_15 AC 1,420 ms
113,208 KB
testcase_16 AC 1,383 ms
112,548 KB
testcase_17 AC 1,392 ms
113,328 KB
testcase_18 AC 1,247 ms
106,244 KB
testcase_19 AC 1,339 ms
110,112 KB
testcase_20 AC 1,388 ms
112,620 KB
testcase_21 AC 1,399 ms
113,256 KB
testcase_22 AC 69 ms
51,196 KB
testcase_23 AC 1,388 ms
113,424 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();
        Map<Integer, Deque<Integer>> positions = new HashMap<>();
        int[] values = new int[n + 1];
        for (int i = n; i >= 1; i--) {
            values[i] = i;
            for (int j = 2; j <= Math.sqrt(values[i]); j++) {
                while (values[i] % (j * j) == 0) {
                    values[i] /= j * j;
                }
            }
            if (!positions.containsKey(values[i])) {
                positions.put(values[i], new ArrayDeque<>());
            }
            positions.get(values[i]).add(i);
        }
        String result = IntStream.rangeClosed(1, n).mapToObj(i -> {
            return positions.get(values[i]).poll().toString();
        }).collect(Collectors.joining(" "));
        System.out.println(result);
    }
}
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