結果

問題 No.390 最長の数列
ユーザー MitI_7MitI_7
提出日時 2016-09-19 12:13:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
WA  
(最初)
実行時間 -
コード長 280 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,732 KB
最終ジャッジ日時 2024-11-17 09:18:54
合計ジャッジ時間 54,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,175 ms
18,560 KB
testcase_01 AC 2,029 ms
18,432 KB
testcase_02 AC 2,234 ms
18,432 KB
testcase_03 AC 2,073 ms
18,304 KB
testcase_04 AC 2,044 ms
18,432 KB
testcase_05 AC 3,350 ms
30,600 KB
testcase_06 TLE -
testcase_07 AC 2,142 ms
18,560 KB
testcase_08 AC 2,158 ms
18,432 KB
testcase_09 WA -
testcase_10 AC 3,475 ms
30,604 KB
testcase_11 AC 3,443 ms
30,452 KB
testcase_12 AC 3,504 ms
30,276 KB
testcase_13 AC 2,361 ms
25,500 KB
testcase_14 AC 3,254 ms
30,732 KB
testcase_15 AC 2,397 ms
18,560 KB
testcase_16 AC 2,376 ms
18,560 KB
testcase_17 AC 2,273 ms
18,816 KB
testcase_18 AC 2,513 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = set(map(int, input().split()))
l = [1 if i in x else 0 for i in range(10 ** 6 + 1)]
ans = 1
for x in range(1, 10 ** 6):
    for m in range(x * 2, 10 ** 6, x):
        if l[m]:
            l[m] = max(l[m], l[x] + 1)
            ans = max(ans, l[m])
print(ans)
0