結果

問題 No.2449 square_permutation
ユーザー ShirotsumeShirotsume
提出日時 2023-08-31 23:29:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,592 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 145,944 KB
最終ジャッジ日時 2024-06-11 01:43:17
合計ジャッジ時間 23,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,168 KB
testcase_01 AC 48 ms
55,424 KB
testcase_02 AC 47 ms
54,912 KB
testcase_03 AC 48 ms
55,424 KB
testcase_04 AC 54 ms
62,080 KB
testcase_05 AC 72 ms
68,608 KB
testcase_06 AC 385 ms
99,584 KB
testcase_07 AC 427 ms
103,144 KB
testcase_08 AC 489 ms
106,668 KB
testcase_09 AC 564 ms
111,336 KB
testcase_10 AC 879 ms
128,128 KB
testcase_11 AC 977 ms
128,896 KB
testcase_12 AC 1,072 ms
128,896 KB
testcase_13 AC 1,508 ms
145,256 KB
testcase_14 AC 1,509 ms
145,356 KB
testcase_15 AC 1,520 ms
145,544 KB
testcase_16 AC 1,519 ms
145,548 KB
testcase_17 AC 1,592 ms
145,548 KB
testcase_18 AC 1,323 ms
135,304 KB
testcase_19 AC 1,479 ms
138,244 KB
testcase_20 AC 1,514 ms
145,556 KB
testcase_21 AC 1,526 ms
145,944 KB
testcase_22 AC 48 ms
55,168 KB
testcase_23 AC 1,540 ms
145,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

D = [[] for _ in range(n + 1)]

s = []
for i in range(1, n + 1):
    now = i
    for j in range(2, now + 1):
        if j * j > now:
            break
        while now % (j * j) == 0:
            now //= (j * j)

    D[now].append(i)
    s.append(now)
ans = []

for i in range(n):
    ans.append(D[s[i]].pop())
print(*ans)
0