結果

問題 No.2718 Best Consonance
ユーザー dp_ijkdp_ijk
提出日時 2024-06-22 13:38:28
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 582 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 563,040 KB
最終ジャッジ日時 2024-06-22 13:39:23
合計ジャッジ時間 46,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,872 KB
testcase_01 AC 44 ms
54,312 KB
testcase_02 AC 37 ms
54,208 KB
testcase_03 AC 40 ms
54,340 KB
testcase_04 AC 39 ms
54,368 KB
testcase_05 AC 38 ms
55,056 KB
testcase_06 AC 37 ms
54,536 KB
testcase_07 AC 37 ms
54,500 KB
testcase_08 AC 36 ms
54,800 KB
testcase_09 AC 105 ms
77,876 KB
testcase_10 AC 94 ms
77,744 KB
testcase_11 AC 110 ms
77,828 KB
testcase_12 AC 97 ms
77,764 KB
testcase_13 AC 99 ms
77,776 KB
testcase_14 AC 1,816 ms
248,472 KB
testcase_15 AC 1,419 ms
232,160 KB
testcase_16 AC 1,536 ms
228,924 KB
testcase_17 AC 1,163 ms
195,784 KB
testcase_18 AC 1,583 ms
246,428 KB
testcase_19 AC 1,296 ms
212,592 KB
testcase_20 AC 1,802 ms
248,548 KB
testcase_21 AC 1,742 ms
255,320 KB
testcase_22 AC 1,750 ms
255,020 KB
testcase_23 AC 1,102 ms
181,860 KB
testcase_24 AC 1,936 ms
247,452 KB
testcase_25 AC 1,988 ms
247,180 KB
testcase_26 AC 1,953 ms
247,536 KB
testcase_27 AC 1,968 ms
247,468 KB
testcase_28 AC 1,966 ms
247,064 KB
testcase_29 AC 1,943 ms
247,380 KB
testcase_30 AC 1,958 ms
246,528 KB
testcase_31 AC 1,998 ms
247,036 KB
testcase_32 AC 1,949 ms
247,352 KB
testcase_33 AC 1,951 ms
247,120 KB
testcase_34 AC 37 ms
54,372 KB
testcase_35 AC 36 ms
55,236 KB
testcase_36 AC 2,568 ms
264,780 KB
testcase_37 AC 38 ms
54,284 KB
testcase_38 MLE -
testcase_39 AC 105 ms
56,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def divisors(X):
   assert X >= 1
   from math import isqrt
   head = [d for d in range(1, isqrt(X) + 1) if X%d == 0]
   tail = [X//d for d in reversed(head)]
   if isqrt(X)**2 == X:
      head.pop()
   return head + tail

INF = 10**18
N = int(input())
AB = [tuple(map(int, input().split())) for _ in range(N)]

AB.sort(key=lambda ab: ab[0] * ab[1], reverse=True)
d = defaultdict(lambda: INF)

cands = []
for a, b in AB:
   for g in divisors(a):
      na = d[g]
      cands.append(b*g//na)
      d[g] = min(d[g], a)

ans = max(cands)
print(ans)
0