結果

問題 No.390 最長の数列
ユーザー H20H20
提出日時 2021-01-21 13:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 649 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-06-06 19:39:34
合計ジャッジ時間 3,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 110 ms
100,864 KB
testcase_06 AC 649 ms
105,600 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 55 ms
59,136 KB
testcase_10 AC 170 ms
106,752 KB
testcase_11 AC 178 ms
106,368 KB
testcase_12 AC 183 ms
106,624 KB
testcase_13 AC 143 ms
94,592 KB
testcase_14 AC 223 ms
106,240 KB
testcase_15 AC 44 ms
53,248 KB
testcase_16 AC 44 ms
53,504 KB
testcase_17 AC 62 ms
65,408 KB
testcase_18 AC 65 ms
67,072 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