結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2024-02-21 12:13:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 3,000 ms
コード長 638 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 92,564 KB
最終ジャッジ日時 2024-09-29 04:13:29
合計ジャッジ時間 8,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,968 KB
testcase_01 AC 34 ms
58,308 KB
testcase_02 AC 35 ms
58,184 KB
testcase_03 AC 33 ms
58,328 KB
testcase_04 AC 33 ms
57,356 KB
testcase_05 AC 36 ms
58,412 KB
testcase_06 AC 34 ms
58,452 KB
testcase_07 AC 34 ms
59,008 KB
testcase_08 AC 35 ms
58,900 KB
testcase_09 AC 34 ms
57,616 KB
testcase_10 AC 39 ms
58,056 KB
testcase_11 AC 36 ms
58,704 KB
testcase_12 AC 39 ms
61,840 KB
testcase_13 AC 53 ms
64,628 KB
testcase_14 AC 46 ms
64,820 KB
testcase_15 AC 44 ms
65,668 KB
testcase_16 AC 35 ms
60,236 KB
testcase_17 AC 46 ms
64,728 KB
testcase_18 AC 35 ms
58,256 KB
testcase_19 AC 37 ms
59,372 KB
testcase_20 AC 45 ms
64,252 KB
testcase_21 AC 64 ms
72,472 KB
testcase_22 AC 184 ms
80,016 KB
testcase_23 AC 284 ms
83,644 KB
testcase_24 AC 99 ms
76,584 KB
testcase_25 AC 296 ms
85,196 KB
testcase_26 AC 401 ms
90,052 KB
testcase_27 AC 408 ms
89,972 KB
testcase_28 AC 398 ms
90,252 KB
testcase_29 AC 423 ms
89,848 KB
testcase_30 AC 399 ms
90,112 KB
testcase_31 AC 173 ms
89,564 KB
testcase_32 AC 198 ms
89,312 KB
testcase_33 AC 170 ms
89,312 KB
testcase_34 AC 166 ms
89,956 KB
testcase_35 AC 193 ms
90,092 KB
testcase_36 AC 69 ms
88,804 KB
testcase_37 AC 614 ms
92,564 KB
testcase_38 AC 36 ms
59,320 KB
testcase_39 AC 36 ms
58,060 KB
testcase_40 AC 596 ms
90,428 KB
testcase_41 AC 603 ms
90,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# それまでに出てきた約数までの最高歩数+1すればいいのでは

def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N = int(input())
A = list(map(int, input().split()))

div_count = [0]*(10**5+3)

for a in A:
    divs = divisors(a)
    mx = 0
    for d in divs:
        mx = max(mx, div_count[d])
    div_count[a] = mx+1
    
ans = max(div_count)
print(ans)

#print(div_count[:40])
0