結果

問題 No.2449 square_permutation
ユーザー ShirotsumeShirotsume
提出日時 2023-08-31 23:26:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 126,480 KB
最終ジャッジ日時 2024-06-11 01:42:53
合計ジャッジ時間 39,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,168 KB
testcase_01 AC 49 ms
55,296 KB
testcase_02 AC 50 ms
55,424 KB
testcase_03 AC 49 ms
55,680 KB
testcase_04 AC 59 ms
62,336 KB
testcase_05 AC 78 ms
70,272 KB
testcase_06 AC 662 ms
95,836 KB
testcase_07 AC 747 ms
98,120 KB
testcase_08 AC 859 ms
100,608 KB
testcase_09 AC 1,020 ms
103,972 KB
testcase_10 AC 1,714 ms
113,728 KB
testcase_11 AC 1,883 ms
119,876 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 52 ms
55,296 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)]

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

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

print(*ans)
0