結果

問題 No.2218 Multiple LIS
ユーザー ikomaikoma
提出日時 2023-02-17 22:07:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 294 bytes
コンパイル時間 1,005 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,864 KB
最終ジャッジ日時 2024-07-19 13:18:39
合計ジャッジ時間 6,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,624 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 44 ms
53,248 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 44 ms
53,248 KB
testcase_05 AC 44 ms
53,120 KB
testcase_06 AC 44 ms
53,248 KB
testcase_07 AC 44 ms
53,248 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 44 ms
53,120 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 45 ms
53,248 KB
testcase_12 AC 57 ms
62,592 KB
testcase_13 AC 61 ms
65,536 KB
testcase_14 AC 58 ms
64,512 KB
testcase_15 AC 58 ms
64,384 KB
testcase_16 AC 53 ms
61,056 KB
testcase_17 AC 61 ms
65,536 KB
testcase_18 AC 51 ms
60,544 KB
testcase_19 AC 53 ms
61,312 KB
testcase_20 AC 60 ms
64,512 KB
testcase_21 AC 459 ms
78,976 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict

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

ans=defaultdict(int)
for a in A:
    x=1
    for k,v in list(ans.items()):
        if a%k==0:
            x = max(x,v+1)
    ans[a]=x
print(max(v for v in ans.values()))
0