結果

問題 No.2718 Best Consonance
ユーザー ShirotsumeShirotsume
提出日時 2024-04-06 11:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,634 ms / 4,000 ms
コード長 867 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-10-01 04:15:04
合計ジャッジ時間 53,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,128 KB
testcase_01 AC 46 ms
58,208 KB
testcase_02 AC 46 ms
58,608 KB
testcase_03 AC 45 ms
58,688 KB
testcase_04 AC 44 ms
57,484 KB
testcase_05 AC 46 ms
57,824 KB
testcase_06 AC 46 ms
57,072 KB
testcase_07 AC 45 ms
57,364 KB
testcase_08 AC 46 ms
57,624 KB
testcase_09 AC 86 ms
79,404 KB
testcase_10 AC 88 ms
79,484 KB
testcase_11 AC 86 ms
79,404 KB
testcase_12 AC 83 ms
79,508 KB
testcase_13 AC 83 ms
79,480 KB
testcase_14 AC 2,306 ms
100,428 KB
testcase_15 AC 1,799 ms
101,892 KB
testcase_16 AC 1,903 ms
96,652 KB
testcase_17 AC 1,506 ms
92,368 KB
testcase_18 AC 2,069 ms
101,760 KB
testcase_19 AC 1,712 ms
94,480 KB
testcase_20 AC 2,286 ms
100,008 KB
testcase_21 AC 2,163 ms
98,768 KB
testcase_22 AC 2,241 ms
108,288 KB
testcase_23 AC 1,346 ms
90,992 KB
testcase_24 AC 2,701 ms
100,716 KB
testcase_25 AC 2,399 ms
100,980 KB
testcase_26 AC 2,404 ms
101,484 KB
testcase_27 AC 2,412 ms
100,964 KB
testcase_28 AC 2,396 ms
101,012 KB
testcase_29 AC 2,586 ms
100,652 KB
testcase_30 AC 2,522 ms
101,024 KB
testcase_31 AC 2,395 ms
101,108 KB
testcase_32 AC 2,396 ms
100,952 KB
testcase_33 AC 2,397 ms
101,388 KB
testcase_34 AC 46 ms
57,600 KB
testcase_35 AC 45 ms
58,028 KB
testcase_36 AC 2,852 ms
99,856 KB
testcase_37 AC 47 ms
58,396 KB
testcase_38 AC 3,634 ms
99,556 KB
testcase_39 AC 43 ms
57,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
AB = [li() for _ in range(n)]
AB.sort(key = lambda x: x[0] * x[1], reverse=True)

c = [inf] * (2 * 10 ** 5 + 2)
ans = 0
for a, b in AB:
    for i in range(1, a + 1):
        if i * i > a:
            break
        if a % i == 0:
            g = i
            ans = max(ans, a * b // (a * c[g] // g))
            g = a // i
            ans = max(ans, a * b // (a * c[g] // g))
    for i in range(1, a + 1):
        if i * i > a:
            break
        if a % i == 0:
            g = i
            c[g] = min(c[g], a)
            g = a // i
            c[g] = min(c[g], a)

print(ans)
            
            
0