結果

問題 No.2449 square_permutation
ユーザー FromBooskaFromBooska
提出日時 2023-09-01 11:41:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 93,056 KB
最終ジャッジ日時 2024-06-11 02:28:17
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 48 ms
62,464 KB
testcase_06 AC 84 ms
81,792 KB
testcase_07 AC 88 ms
81,792 KB
testcase_08 AC 94 ms
82,816 KB
testcase_09 AC 89 ms
83,584 KB
testcase_10 AC 104 ms
87,168 KB
testcase_11 AC 101 ms
88,064 KB
testcase_12 AC 103 ms
88,960 KB
testcase_13 AC 117 ms
92,800 KB
testcase_14 AC 116 ms
92,544 KB
testcase_15 AC 115 ms
92,800 KB
testcase_16 AC 116 ms
93,056 KB
testcase_17 AC 114 ms
92,672 KB
testcase_18 AC 109 ms
91,264 KB
testcase_19 AC 114 ms
92,544 KB
testcase_20 AC 122 ms
92,800 KB
testcase_21 AC 115 ms
92,800 KB
testcase_22 AC 36 ms
51,584 KB
testcase_23 AC 117 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
pos = [-1]*(N+1)
for n in range(1, N+1):
    if pos[n] != -1:
        continue
    
    if n > N/2 and pos[n] == -1:
        pos[n] = n
        continue
    candidates = []
    for j in range(1, N+1):
        if n*j*j > N:
            break
        if pos[n*j*j] == -1:
            candidates.append(n*j*j)
    L = len(candidates)
    for l in range(L):
        pos[candidates[l]] = candidates[L-l-1]
    #print('n', n, 'candidates', candidates, 'pos', pos)
print(*pos[1:])
0