結果

問題 No.2449 square_permutation
ユーザー FromBooskaFromBooska
提出日時 2023-09-01 11:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-06-11 02:28:38
合計ジャッジ時間 4,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 49 ms
62,336 KB
testcase_06 AC 86 ms
81,536 KB
testcase_07 AC 88 ms
81,664 KB
testcase_08 AC 87 ms
82,816 KB
testcase_09 AC 87 ms
83,712 KB
testcase_10 AC 103 ms
87,168 KB
testcase_11 AC 105 ms
87,936 KB
testcase_12 AC 107 ms
88,832 KB
testcase_13 AC 118 ms
92,672 KB
testcase_14 AC 118 ms
92,416 KB
testcase_15 AC 113 ms
92,544 KB
testcase_16 AC 113 ms
92,544 KB
testcase_17 AC 114 ms
92,416 KB
testcase_18 AC 110 ms
90,752 KB
testcase_19 AC 114 ms
92,416 KB
testcase_20 AC 115 ms
92,800 KB
testcase_21 AC 118 ms
92,800 KB
testcase_22 AC 36 ms
51,840 KB
testcase_23 AC 116 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 辞書順なので前から確定していく
# nに平方数をかけていきNまでで使われていない数をリストアップ
# その次が自力思い浮かばず
# 候補の数の最初と最後、次と最後から2番目、、をマッチングさせてスワップする

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