結果

問題 No.390 最長の数列
ユーザー H20H20
提出日時 2021-01-21 13:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 810 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-12-24 13:12:59
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,248 KB
testcase_01 AC 51 ms
53,632 KB
testcase_02 AC 52 ms
53,504 KB
testcase_03 AC 52 ms
53,888 KB
testcase_04 AC 51 ms
53,376 KB
testcase_05 AC 126 ms
101,504 KB
testcase_06 AC 810 ms
105,856 KB
testcase_07 AC 51 ms
53,632 KB
testcase_08 AC 52 ms
53,376 KB
testcase_09 AC 66 ms
59,392 KB
testcase_10 AC 203 ms
106,368 KB
testcase_11 AC 213 ms
106,496 KB
testcase_12 AC 211 ms
106,880 KB
testcase_13 AC 163 ms
94,848 KB
testcase_14 AC 276 ms
106,368 KB
testcase_15 AC 52 ms
53,632 KB
testcase_16 AC 53 ms
53,760 KB
testcase_17 AC 72 ms
65,792 KB
testcase_18 AC 74 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import collections
N = int(input())
A = list(map(int,input().split()))
CA = collections.Counter(A)
MA = max(A)
A.sort()
for a in A:
    i=2
    while MA>=a*i:
        if CA[a*i]>0:
            CA[a*i]=max(CA[a*i],CA[a]+1)
        i+=1

print(max(CA.values()))
0