結果

問題 No.2449 square_permutation
ユーザー FromBooskaFromBooska
提出日時 2023-09-01 10:25:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 93,996 KB
最終ジャッジ日時 2024-06-11 02:27:20
合計ジャッジ時間 34,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,820 KB
testcase_01 AC 34 ms
52,728 KB
testcase_02 AC 34 ms
53,020 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
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 39 ms
53,948 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 辞書順なので前から確定していくか
# idxに対して、一番大きくて平方数になる数を探して場所をスワップ
# nの倍数だけをサーチすると4と9が交換できず失敗する

N = int(input())
pos = [-1]*(N+1)
for n in range(1, N+1):
    if n > N/2 and pos[n] == -1:
        pos[n] = n
        continue
    if (n**0.5).is_integer() == True:
        # 倍数だけのサーチではダメだ、4が9と交換できない
        for j in range(N, n-1, -1):
            #print('n', n, 'j', j, (n*j)**0.5, ((n*j)**0.5).is_integer())
            if pos[j] == -1 and ((n*j)**0.5).is_integer() == True:
                pos[n] = j
                pos[j] = n
                break
        #print('n', n, 'pos', pos)
    else:
        mx = N-N%n
        for j in range(mx, n-1, -n):
            #print('n', n, 'j', j, (n*j)**0.5, ((n*j)**0.5).is_integer())
            if pos[j] == -1 and ((n*j)**0.5).is_integer() == True:
                pos[n] = j
                pos[j] = n
                break
        #print('n', n, 'pos', pos)        
print(*pos[1:])  
0