結果

問題 No.2449 square_permutation
ユーザー hiryuNhiryuN
提出日時 2023-08-31 16:08:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,620 KB
最終ジャッジ日時 2024-06-11 01:32:03
合計ジャッジ時間 8,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 177 ms
17,028 KB
testcase_07 AC 195 ms
17,656 KB
testcase_08 AC 203 ms
18,512 KB
testcase_09 AC 236 ms
19,552 KB
testcase_10 AC 324 ms
23,340 KB
testcase_11 AC 339 ms
24,232 KB
testcase_12 AC 357 ms
25,240 KB
testcase_13 AC 467 ms
29,484 KB
testcase_14 AC 466 ms
29,480 KB
testcase_15 AC 461 ms
29,488 KB
testcase_16 AC 476 ms
29,484 KB
testcase_17 AC 475 ms
29,492 KB
testcase_18 AC 435 ms
27,728 KB
testcase_19 AC 456 ms
29,236 KB
testcase_20 AC 477 ms
29,496 KB
testcase_21 AC 464 ms
29,496 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 483 ms
29,620 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