結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | convexineq |
提出日時 | 2020-02-01 21:45:19 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 127,752 KB |
最終ジャッジ日時 | 2024-09-18 20:21:26 |
合計ジャッジ時間 | 4,707 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
# coding: utf-8 # Your code here! import sys readline = sys.stdin.readline read = sys.stdin.read n,*a = [int(i) for i in read().split()] MAX = 1+3*10**5 #MAX = 20 ans = [1]*n d = [[] for _ in range(n+1)] for i,ai in enumerate(a): d[ai].append(i) from bisect import bisect_left from itertools import groupby for k in range(1,MAX): if k not in d: continue dk = d[k] v = [ans[i] for i in dk] l = len(v) for i in range(1,l): if v[i] < v[i-1]: v[i] = v[i-1] #print(k,c) for p in range(2*k,MAX,k): if p in d: for j in d[p]: idx = bisect_left(dk,j) #print(k,p,idx,j,ans) if idx >= 1: ans[j] = max(ans[j],v[idx-1]+1) #print(ans) print(max(ans))