結果

問題 No.2218 Multiple LIS
ユーザー stoqstoq
提出日時 2022-05-28 01:44:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 3,000 ms
コード長 348 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-07-01 23:47:50
合計ジャッジ時間 9,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,344 KB
testcase_01 AC 45 ms
57,816 KB
testcase_02 AC 42 ms
57,344 KB
testcase_03 AC 41 ms
58,112 KB
testcase_04 AC 42 ms
57,728 KB
testcase_05 AC 43 ms
57,600 KB
testcase_06 AC 41 ms
57,216 KB
testcase_07 AC 42 ms
57,856 KB
testcase_08 AC 41 ms
57,216 KB
testcase_09 AC 41 ms
57,600 KB
testcase_10 AC 40 ms
57,344 KB
testcase_11 AC 41 ms
57,776 KB
testcase_12 AC 47 ms
61,184 KB
testcase_13 AC 50 ms
62,336 KB
testcase_14 AC 48 ms
61,824 KB
testcase_15 AC 50 ms
61,312 KB
testcase_16 AC 46 ms
60,672 KB
testcase_17 AC 48 ms
61,952 KB
testcase_18 AC 41 ms
57,600 KB
testcase_19 AC 44 ms
59,136 KB
testcase_20 AC 49 ms
61,952 KB
testcase_21 AC 77 ms
64,768 KB
testcase_22 AC 211 ms
73,600 KB
testcase_23 AC 316 ms
77,952 KB
testcase_24 AC 108 ms
67,968 KB
testcase_25 AC 349 ms
79,616 KB
testcase_26 AC 477 ms
85,632 KB
testcase_27 AC 474 ms
86,400 KB
testcase_28 AC 474 ms
87,680 KB
testcase_29 AC 474 ms
85,632 KB
testcase_30 AC 471 ms
86,016 KB
testcase_31 AC 176 ms
82,816 KB
testcase_32 AC 189 ms
82,176 KB
testcase_33 AC 176 ms
83,584 KB
testcase_34 AC 174 ms
83,072 KB
testcase_35 AC 182 ms
83,200 KB
testcase_36 AC 67 ms
79,872 KB
testcase_37 AC 663 ms
83,328 KB
testcase_38 AC 41 ms
57,344 KB
testcase_39 AC 41 ms
57,856 KB
testcase_40 AC 536 ms
83,328 KB
testcase_41 AC 537 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
dp = [0] * 100010
for i in range(n):
    Max = 0
    d = 0
    while d * d <= a[i]:
        d += 1
        if a[i] % d != 0:
            continue
        if Max < dp[d]:
            Max = dp[d]
        if Max < dp[a[i] // d]:
            Max = dp[a[i] // d]
    dp[a[i]] = Max + 1
print(max(dp))
0