結果

問題 No.390 最長の数列
ユーザー mkawa2mkawa2
提出日時 2019-12-28 04:46:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,119 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 57,524 KB
最終ジャッジ日時 2024-10-10 21:14:29
合計ジャッジ時間 19,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
44,384 KB
testcase_01 AC 528 ms
44,168 KB
testcase_02 AC 522 ms
44,384 KB
testcase_03 AC 519 ms
44,612 KB
testcase_04 AC 520 ms
44,388 KB
testcase_05 AC 647 ms
57,276 KB
testcase_06 AC 3,326 ms
57,524 KB
testcase_07 AC 514 ms
44,512 KB
testcase_08 AC 593 ms
52,356 KB
testcase_09 WA -
testcase_10 AC 862 ms
57,260 KB
testcase_11 AC 887 ms
57,332 KB
testcase_12 AC 855 ms
57,300 KB
testcase_13 AC 1,036 ms
56,852 KB
testcase_14 AC 1,071 ms
50,272 KB
testcase_15 AC 522 ms
44,384 KB
testcase_16 AC 596 ms
51,972 KB
testcase_17 AC 599 ms
52,224 KB
testcase_18 AC 608 ms
51,940 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):
            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