結果

問題 No.2718 Best Consonance
ユーザー ShirotsumeShirotsume
提出日時 2024-02-07 22:39:39
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 867 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 108,296 KB
最終ジャッジ日時 2024-10-01 03:24:50
合計ジャッジ時間 58,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,888 KB
testcase_01 AC 44 ms
57,680 KB
testcase_02 AC 43 ms
57,416 KB
testcase_03 AC 44 ms
57,828 KB
testcase_04 AC 44 ms
58,840 KB
testcase_05 AC 45 ms
57,900 KB
testcase_06 AC 44 ms
57,032 KB
testcase_07 AC 43 ms
58,012 KB
testcase_08 AC 43 ms
58,068 KB
testcase_09 AC 76 ms
76,744 KB
testcase_10 AC 84 ms
79,476 KB
testcase_11 AC 81 ms
79,364 KB
testcase_12 AC 85 ms
79,484 KB
testcase_13 AC 83 ms
79,200 KB
testcase_14 AC 2,541 ms
100,216 KB
testcase_15 AC 1,998 ms
101,108 KB
testcase_16 AC 2,116 ms
96,448 KB
testcase_17 AC 1,653 ms
92,448 KB
testcase_18 AC 2,291 ms
101,648 KB
testcase_19 AC 1,901 ms
94,484 KB
testcase_20 AC 2,552 ms
100,224 KB
testcase_21 AC 2,432 ms
98,884 KB
testcase_22 AC 2,507 ms
108,296 KB
testcase_23 AC 1,513 ms
90,908 KB
testcase_24 AC 2,673 ms
100,708 KB
testcase_25 AC 2,677 ms
101,088 KB
testcase_26 AC 2,680 ms
101,344 KB
testcase_27 AC 2,665 ms
101,248 KB
testcase_28 AC 2,656 ms
100,916 KB
testcase_29 AC 2,638 ms
100,808 KB
testcase_30 AC 2,675 ms
101,020 KB
testcase_31 AC 2,676 ms
100,700 KB
testcase_32 AC 2,604 ms
100,992 KB
testcase_33 AC 2,671 ms
101,404 KB
testcase_34 AC 47 ms
58,340 KB
testcase_35 AC 47 ms
58,480 KB
testcase_36 AC 3,281 ms
99,804 KB
testcase_37 WA -
testcase_38 TLE -
testcase_39 AC 48 ms
58,092 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 ** 31 - 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