結果

問題 No.390 最長の数列
ユーザー mkawa2mkawa2
提出日時 2019-12-28 04:47:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,382 ms / 5,000 ms
コード長 1,121 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,552 KB
最終ジャッジ日時 2024-10-10 21:17:53
合計ジャッジ時間 17,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
44,256 KB
testcase_01 AC 546 ms
44,264 KB
testcase_02 AC 534 ms
44,128 KB
testcase_03 AC 535 ms
44,512 KB
testcase_04 AC 539 ms
44,252 KB
testcase_05 AC 671 ms
57,552 KB
testcase_06 AC 3,382 ms
57,128 KB
testcase_07 AC 536 ms
44,132 KB
testcase_08 AC 605 ms
51,744 KB
testcase_09 AC 738 ms
52,084 KB
testcase_10 AC 892 ms
57,112 KB
testcase_11 AC 923 ms
57,552 KB
testcase_12 AC 911 ms
57,076 KB
testcase_13 AC 1,086 ms
56,308 KB
testcase_14 AC 1,095 ms
50,776 KB
testcase_15 AC 532 ms
44,260 KB
testcase_16 AC 607 ms
51,756 KB
testcase_17 AC 616 ms
51,868 KB
testcase_18 AC 626 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    n=II()
    aa=LI()
    m=max(aa)
    dp=[-1]*(m+1)
    for a in aa:
        dp[a]=1
    for i in range(1,m):
        pre=dp[i]
        if pre==-1:continue
        for j in range(2,m+5):
            if i*j>m:break
            if dp[i*j]==-1:continue
            dp[i*j]=max(dp[i*j],pre+1)
    print(max(dp))

main()
0