結果

問題 No.390 最長の数列
ユーザー ayaoniayaoni
提出日時 2020-11-27 14:12:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 106,312 KB
最終ジャッジ日時 2024-07-23 21:35:54
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
73,880 KB
testcase_01 AC 57 ms
74,112 KB
testcase_02 AC 58 ms
73,984 KB
testcase_03 AC 57 ms
73,088 KB
testcase_04 AC 58 ms
73,888 KB
testcase_05 AC 93 ms
98,304 KB
testcase_06 AC 258 ms
105,368 KB
testcase_07 AC 54 ms
73,472 KB
testcase_08 AC 49 ms
72,576 KB
testcase_09 AC 54 ms
73,728 KB
testcase_10 AC 126 ms
105,768 KB
testcase_11 AC 128 ms
105,848 KB
testcase_12 AC 122 ms
106,312 KB
testcase_13 AC 89 ms
96,640 KB
testcase_14 AC 257 ms
105,672 KB
testcase_15 AC 49 ms
72,320 KB
testcase_16 AC 50 ms
72,192 KB
testcase_17 AC 64 ms
79,104 KB
testcase_18 AC 63 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
X = LI()
X.sort()

flag = [0]*1000001
for x in X:
    flag[x] = 1

dp = [1]*1000001
for x in X:
    a = dp[x]
    for y in range(2*x,1000001,x):
        if flag[y] == 1:
            dp[y] = max(dp[y],a+1)

print(max(dp))
0