結果

問題 No.2449 square_permutation
ユーザー 👑 rin204rin204
提出日時 2023-09-18 20:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 120,584 KB
最終ジャッジ日時 2024-07-05 10:03:39
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,960 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 37 ms
52,212 KB
testcase_03 AC 37 ms
53,284 KB
testcase_04 AC 35 ms
52,552 KB
testcase_05 AC 56 ms
66,468 KB
testcase_06 AC 106 ms
90,568 KB
testcase_07 AC 113 ms
92,564 KB
testcase_08 AC 121 ms
94,592 KB
testcase_09 AC 132 ms
97,280 KB
testcase_10 AC 168 ms
105,984 KB
testcase_11 AC 170 ms
108,288 KB
testcase_12 AC 183 ms
110,260 KB
testcase_13 AC 213 ms
120,076 KB
testcase_14 AC 212 ms
120,320 KB
testcase_15 AC 210 ms
120,332 KB
testcase_16 AC 213 ms
120,192 KB
testcase_17 AC 217 ms
120,448 KB
testcase_18 AC 202 ms
115,952 KB
testcase_19 AC 211 ms
119,680 KB
testcase_20 AC 217 ms
120,296 KB
testcase_21 AC 218 ms
120,444 KB
testcase_22 AC 36 ms
52,224 KB
testcase_23 AC 212 ms
120,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
div = [i for i in range(n + 1)]
for i in range(2, n + 1):
    if div[i] != i:
        continue
    for j in range(i * 2, n + 1, i):
        div[j] = min(div[j], i)

pp = [0] * (n + 1)
lst = [[] for _ in range(n + 1)]
for i in range(1, n + 1):
    b = 0
    x = i
    y = 1
    while x > 1:
        d = div[x]
        if d == b:
            y *= d * d
            b = 0
        else:
            b = d
        x //= d

    pp[i] = i // y
    lst[pp[i]].append(i)

ans = [0] * n
for i in range(1, n + 1):
    ans[i - 1] = lst[pp[i]].pop()

print(*ans)
0