結果

問題 No.390 最長の数列
ユーザー hiyokko2hiyokko2
提出日時 2016-07-30 14:09:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,037 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,464 KB
最終ジャッジ日時 2024-10-02 11:55:00
合計ジャッジ時間 7,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 159 ms
24,184 KB
testcase_06 AC 3,037 ms
24,164 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 56 ms
18,416 KB
testcase_09 AC 171 ms
18,420 KB
testcase_10 AC 371 ms
24,348 KB
testcase_11 AC 428 ms
24,464 KB
testcase_12 AC 391 ms
24,420 KB
testcase_13 AC 497 ms
23,224 KB
testcase_14 AC 732 ms
20,596 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 59 ms
18,280 KB
testcase_17 AC 66 ms
18,840 KB
testcase_18 AC 71 ms
19,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = sorted(map(int, input().split()))

maxx = x[-1]
dp = [0] * (maxx + 1)

for i in x:
    dp[i] = 1

for i in x:
    for j in range(i * 2, maxx + 1, i):
        if dp[j] == 0:
            continue
        else:
            dp[j] = max(dp[j], dp[i] + 1)
print(max(dp))
0