結果

問題 No.2718 Best Consonance
ユーザー dp_ijkdp_ijk
提出日時 2024-06-22 13:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,096 ms / 4,000 ms
コード長 599 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 134,376 KB
最終ジャッジ日時 2024-06-22 13:41:56
合計ジャッジ時間 39,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,376 KB
testcase_01 AC 36 ms
54,316 KB
testcase_02 AC 36 ms
54,040 KB
testcase_03 AC 38 ms
54,056 KB
testcase_04 AC 39 ms
54,716 KB
testcase_05 AC 36 ms
55,520 KB
testcase_06 AC 37 ms
55,548 KB
testcase_07 AC 37 ms
54,352 KB
testcase_08 AC 37 ms
55,164 KB
testcase_09 AC 108 ms
78,084 KB
testcase_10 AC 95 ms
77,756 KB
testcase_11 AC 95 ms
77,296 KB
testcase_12 AC 95 ms
77,544 KB
testcase_13 AC 98 ms
77,512 KB
testcase_14 AC 1,633 ms
118,720 KB
testcase_15 AC 1,250 ms
116,864 KB
testcase_16 AC 1,337 ms
112,364 KB
testcase_17 AC 1,049 ms
108,252 KB
testcase_18 AC 1,457 ms
116,452 KB
testcase_19 AC 1,188 ms
110,572 KB
testcase_20 AC 1,660 ms
118,308 KB
testcase_21 AC 1,559 ms
122,936 KB
testcase_22 AC 1,519 ms
123,500 KB
testcase_23 AC 966 ms
107,480 KB
testcase_24 AC 1,756 ms
133,736 KB
testcase_25 AC 1,728 ms
133,768 KB
testcase_26 AC 1,743 ms
134,128 KB
testcase_27 AC 1,702 ms
134,376 KB
testcase_28 AC 1,746 ms
134,224 KB
testcase_29 AC 1,714 ms
134,344 KB
testcase_30 AC 1,810 ms
134,160 KB
testcase_31 AC 1,772 ms
133,992 KB
testcase_32 AC 1,779 ms
133,864 KB
testcase_33 AC 1,736 ms
133,520 KB
testcase_34 AC 38 ms
55,256 KB
testcase_35 AC 36 ms
54,292 KB
testcase_36 AC 1,889 ms
95,100 KB
testcase_37 AC 37 ms
54,764 KB
testcase_38 AC 3,096 ms
94,812 KB
testcase_39 AC 38 ms
55,180 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)

ans = 0
for a, b in AB:
   for g in divisors(a):
      na = d[g]
      score = b*g//na
      if ans < score:
         ans = score
      d[g] = min(d[g], a)

print(ans)
0