結果

問題 No.979 Longest Divisor Sequence
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-02-01 00:34:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 53,460 KB
最終ジャッジ日時 2024-09-17 12:34:20
合計ジャッジ時間 6,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
37,376 KB
testcase_01 AC 131 ms
31,744 KB
testcase_02 AC 123 ms
31,872 KB
testcase_03 AC 132 ms
31,872 KB
testcase_04 AC 133 ms
31,872 KB
testcase_05 AC 128 ms
32,000 KB
testcase_06 AC 130 ms
31,872 KB
testcase_07 AC 125 ms
32,000 KB
testcase_08 AC 127 ms
31,872 KB
testcase_09 AC 134 ms
31,744 KB
testcase_10 AC 360 ms
32,256 KB
testcase_11 AC 382 ms
32,384 KB
testcase_12 AC 364 ms
32,256 KB
testcase_13 AC 559 ms
48,160 KB
testcase_14 TLE -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int,input().split()))

lis =  [ [] for i in range(3*(10**5)+1) ]
maxlen = [0] * N

for loop in range(N):

    na = A[loop]

    for i in range(int(na**0.5)+1):

        i += 1
        if na % i == 0:

            if i < na:
                for j in lis[i]:
                    maxlen[loop] = max(maxlen[loop] , maxlen[j] + 1)

            if na // i < na:
                for j in lis[na//i]:
                    maxlen[loop] = max(maxlen[loop] , maxlen[j] + 1)

    lis[na].append(loop)

#print (maxlen)
print (max(maxlen)+1)
0