結果

問題 No.2449 square_permutation
ユーザー hiryuNhiryuN
提出日時 2023-03-01 17:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,336 KB
最終ジャッジ日時 2024-06-11 01:31:44
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 37 ms
52,992 KB
testcase_05 AC 51 ms
62,720 KB
testcase_06 AC 89 ms
81,568 KB
testcase_07 AC 93 ms
82,612 KB
testcase_08 AC 95 ms
83,336 KB
testcase_09 AC 97 ms
84,352 KB
testcase_10 AC 114 ms
87,208 KB
testcase_11 AC 117 ms
87,996 KB
testcase_12 AC 122 ms
88,900 KB
testcase_13 AC 136 ms
92,964 KB
testcase_14 AC 135 ms
92,676 KB
testcase_15 AC 135 ms
93,336 KB
testcase_16 AC 137 ms
93,024 KB
testcase_17 AC 137 ms
92,772 KB
testcase_18 AC 131 ms
91,184 KB
testcase_19 AC 135 ms
92,672 KB
testcase_20 AC 135 ms
92,984 KB
testcase_21 AC 136 ms
92,732 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 138 ms
93,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
sw=[None]+[0]*n
for i in range(1,n+1):
    if sw[i]==0:
        sq=[i]
        for q in range(2,10**12):
            if i*q**2>n:
                break
            sq.append(i*q**2)
        for q in range(len(sq)):
            sw[sq[q]]=sq[len(sq)-q-1]
print(*sw[1:])
0