結果

問題 No.14 最小公倍数ソート
ユーザー zimphazimpha
提出日時 2017-12-07 21:23:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 529 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 174,112 KB
最終ジャッジ日時 2024-11-29 05:15:18
合計ジャッジ時間 68,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,084 KB
testcase_01 AC 42 ms
60,868 KB
testcase_02 AC 43 ms
60,112 KB
testcase_03 AC 511 ms
87,128 KB
testcase_04 TLE -
testcase_05 AC 2,308 ms
86,728 KB
testcase_06 AC 2,347 ms
87,968 KB
testcase_07 AC 2,951 ms
88,016 KB
testcase_08 TLE -
testcase_09 AC 4,686 ms
88,372 KB
testcase_10 AC 4,808 ms
87,720 KB
testcase_11 AC 4,853 ms
88,456 KB
testcase_12 AC 4,861 ms
88,144 KB
testcase_13 AC 4,940 ms
88,176 KB
testcase_14 AC 4,907 ms
88,252 KB
testcase_15 TLE -
testcase_16 AC 4,804 ms
87,332 KB
testcase_17 AC 1,968 ms
88,504 KB
testcase_18 AC 1,157 ms
87,960 KB
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

upp = 1000
mem = [[-1] * upp for i in range(upp)]
def fast_gcd(x, y):
  if x < upp and y < upp and mem[x][y] != -1:
    return mem[x][y]
  gcd = x if not y else fast_gcd(y, x % y)
  if x < upp and y < upp:
    mem[x][y] = gcd
  return gcd

n = int(input())
a = list(map(int, input().split()))
for i in range(n - 1):
  x = i + 1
  r = a[x] / fast_gcd(a[i], a[x])
  for j in range(i + 2, n):
    t = a[j] / fast_gcd(a[i], a[j])
    if t < r or (t == r and a[j] < a[x]):
      r, x = t, j
  a[i + 1], a[x] = a[x], a[i + 1]
print(*a)
0