結果
問題 | No.14 最小公倍数ソート |
ユーザー | convexineq |
提出日時 | 2021-02-02 19:02:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 637 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 81,916 KB |
実行使用メモリ | 71,512 KB |
最終ジャッジ日時 | 2024-06-29 23:43:53 |
合計ジャッジ時間 | 2,330 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
N = 20 yaku = [[] for _ in range(N)] for i in range(1,N): for j in range(i,N,i): yaku[j].append(i) n,a,*s = map(int,open(0).read().split()) s = sorted(set(s)) n = len(s) from heapq import * hqs = [[] for _ in range(N)] for i in s: for j in yaku[i]: hqs[j].append(i) removed = set() for i in range(n): v = r = 1000000000 for k in yaku[a]: while hqs[k] and hqs[k][0] in removed: heappop(hqs[k]) if hqs[k]: x = hqs[k][0]//k*n if r > x or (r==x and v > hqs[k][0]): r = x v = hqs[k][0] a = v removed.add(a) print(a)