結果

問題 No.2718 Best Consonance
ユーザー ecotteaecottea
提出日時 2024-02-03 19:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,829 ms / 4,000 ms
コード長 840 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 147,708 KB
最終ジャッジ日時 2024-10-02 12:42:28
合計ジャッジ時間 46,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 89 ms
76,672 KB
testcase_10 AC 91 ms
76,800 KB
testcase_11 AC 89 ms
76,928 KB
testcase_12 AC 89 ms
76,416 KB
testcase_13 AC 91 ms
76,680 KB
testcase_14 AC 1,675 ms
116,248 KB
testcase_15 AC 1,377 ms
108,384 KB
testcase_16 AC 1,463 ms
109,568 KB
testcase_17 AC 1,226 ms
104,872 KB
testcase_18 AC 1,536 ms
112,940 KB
testcase_19 AC 1,343 ms
106,188 KB
testcase_20 AC 1,670 ms
117,076 KB
testcase_21 AC 1,615 ms
114,072 KB
testcase_22 AC 1,618 ms
114,600 KB
testcase_23 AC 1,098 ms
98,868 KB
testcase_24 AC 2,778 ms
146,944 KB
testcase_25 AC 2,783 ms
147,060 KB
testcase_26 AC 2,789 ms
147,708 KB
testcase_27 AC 2,829 ms
147,056 KB
testcase_28 AC 2,804 ms
147,448 KB
testcase_29 AC 2,784 ms
147,320 KB
testcase_30 AC 2,801 ms
147,100 KB
testcase_31 AC 2,796 ms
147,056 KB
testcase_32 AC 2,793 ms
147,064 KB
testcase_33 AC 2,791 ms
147,064 KB
testcase_34 AC 42 ms
57,984 KB
testcase_35 AC 64 ms
75,776 KB
testcase_36 AC 186 ms
81,024 KB
testcase_37 AC 63 ms
75,264 KB
testcase_38 AC 187 ms
80,940 KB
testcase_39 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [0] * n
b = [0] * n
for i in range(n):
    a[i], b[i] = map(int, input().split())

a_max = max(a)

res = 0

a_to_bmax = [-1] * (a_max + 1)
for i in range(n):
    if a_to_bmax[a[i]] == -1:
        a_to_bmax[a[i]] = b[i]
    else:
        res = max(res, min(a_to_bmax[a[i]], b[i]))
        a_to_bmax[a[i]] = max(a_to_bmax[a[i]], b[i])

for g in range(1, a_max // 2 + 1):
    ab_a_b = []
    for a in range(g, a_max + 1, g):
        b = a_to_bmax[a]
        if b == -1:
            continue
        ab_a_b.append([a * b, a, b])
    ab_a_b.sort()
    K = len(ab_a_b)

    a_min = [a_max + 1] * (K + 1)
    for k in range(K - 1, -1, -1):
        ab, a, b = ab_a_b[k]
        a_min[k] = min(a_min[k + 1], a)

    for k in range(K - 1):
        ab, a, b = ab_a_b[k]
        res = max(res, (b * g) // a_min[k + 1])

print(res)
0