結果

問題 No.2718 Best Consonance
ユーザー shinchanshinchan
提出日時 2024-04-06 03:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,612 ms / 4,000 ms
コード長 854 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 108,140 KB
最終ジャッジ日時 2024-10-01 04:13:40
合計ジャッジ時間 53,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,104 KB
testcase_01 AC 44 ms
57,644 KB
testcase_02 AC 43 ms
57,188 KB
testcase_03 AC 42 ms
57,504 KB
testcase_04 AC 42 ms
58,640 KB
testcase_05 AC 47 ms
57,692 KB
testcase_06 AC 42 ms
56,972 KB
testcase_07 AC 43 ms
57,248 KB
testcase_08 AC 44 ms
57,312 KB
testcase_09 AC 81 ms
79,264 KB
testcase_10 AC 85 ms
79,268 KB
testcase_11 AC 83 ms
79,208 KB
testcase_12 AC 82 ms
79,492 KB
testcase_13 AC 83 ms
79,436 KB
testcase_14 AC 2,288 ms
99,828 KB
testcase_15 AC 1,788 ms
101,872 KB
testcase_16 AC 1,906 ms
96,264 KB
testcase_17 AC 1,499 ms
92,476 KB
testcase_18 AC 2,066 ms
101,876 KB
testcase_19 AC 1,695 ms
94,320 KB
testcase_20 AC 2,278 ms
100,228 KB
testcase_21 AC 2,343 ms
98,764 KB
testcase_22 AC 2,253 ms
108,140 KB
testcase_23 AC 1,361 ms
91,288 KB
testcase_24 AC 2,442 ms
100,680 KB
testcase_25 AC 2,417 ms
100,968 KB
testcase_26 AC 2,406 ms
101,288 KB
testcase_27 AC 2,447 ms
100,980 KB
testcase_28 AC 2,405 ms
100,884 KB
testcase_29 AC 2,398 ms
100,780 KB
testcase_30 AC 2,387 ms
100,848 KB
testcase_31 AC 2,381 ms
100,768 KB
testcase_32 AC 2,392 ms
101,244 KB
testcase_33 AC 2,382 ms
101,756 KB
testcase_34 AC 45 ms
57,868 KB
testcase_35 AC 46 ms
58,012 KB
testcase_36 AC 2,855 ms
99,748 KB
testcase_37 AC 46 ms
58,176 KB
testcase_38 AC 3,612 ms
100,152 KB
testcase_39 AC 45 ms
58,436 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 ** 63 - 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