結果

問題 No.2218 Multiple LIS
ユーザー hiryuNhiryuN
提出日時 2023-02-17 23:02:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 3,000 ms
コード長 364 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 91,176 KB
最終ジャッジ日時 2024-07-19 14:15:29
合計ジャッジ時間 8,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,624 KB
testcase_01 AC 44 ms
58,112 KB
testcase_02 AC 44 ms
58,112 KB
testcase_03 AC 39 ms
57,728 KB
testcase_04 AC 40 ms
58,496 KB
testcase_05 AC 44 ms
58,496 KB
testcase_06 AC 41 ms
57,728 KB
testcase_07 AC 40 ms
58,368 KB
testcase_08 AC 41 ms
58,240 KB
testcase_09 AC 41 ms
58,112 KB
testcase_10 AC 42 ms
57,856 KB
testcase_11 AC 41 ms
58,240 KB
testcase_12 AC 43 ms
59,904 KB
testcase_13 AC 50 ms
63,488 KB
testcase_14 AC 53 ms
64,896 KB
testcase_15 AC 54 ms
63,360 KB
testcase_16 AC 42 ms
59,008 KB
testcase_17 AC 50 ms
64,512 KB
testcase_18 AC 41 ms
57,984 KB
testcase_19 AC 44 ms
60,800 KB
testcase_20 AC 48 ms
63,360 KB
testcase_21 AC 77 ms
66,176 KB
testcase_22 AC 207 ms
75,008 KB
testcase_23 AC 308 ms
82,304 KB
testcase_24 AC 108 ms
68,992 KB
testcase_25 AC 341 ms
83,712 KB
testcase_26 AC 473 ms
90,880 KB
testcase_27 AC 470 ms
90,880 KB
testcase_28 AC 467 ms
91,176 KB
testcase_29 AC 456 ms
90,752 KB
testcase_30 AC 471 ms
90,880 KB
testcase_31 AC 182 ms
90,240 KB
testcase_32 AC 179 ms
90,548 KB
testcase_33 AC 182 ms
90,496 KB
testcase_34 AC 179 ms
90,112 KB
testcase_35 AC 189 ms
90,496 KB
testcase_36 AC 64 ms
80,128 KB
testcase_37 AC 663 ms
89,856 KB
testcase_38 AC 41 ms
57,856 KB
testcase_39 AC 38 ms
58,240 KB
testcase_40 AC 532 ms
88,960 KB
testcase_41 AC 532 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))
B=[0]+[0]+[-10**5]*10**5
for i in range(n):
    if A[i]!=1:
        B[A[i]]+=1
    B[A[i]]=max(B[1]+1,B[A[i]])
    for q in range(2,320):
        if q**2>A[i]:
            break
        if A[i]%q==0:
           B[A[i]]=max(B[A[i]],B[q]+1)
           B[A[i]]=max(B[A[i]],B[A[i]//q]+1)

ans=max(B)
#print(B)
print(ans)
0