結果
問題 | No.390 最長の数列 |
ユーザー | sasa8uyauya |
提出日時 | 2024-09-29 23:06:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 82,600 KB |
実行使用メモリ | 60,956 KB |
最終ジャッジ日時 | 2024-09-29 23:06:53 |
合計ジャッジ時間 | 7,507 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
53,608 KB |
testcase_01 | AC | 41 ms
60,940 KB |
testcase_02 | AC | 40 ms
60,956 KB |
testcase_03 | AC | 32 ms
53,940 KB |
testcase_04 | AC | 35 ms
59,652 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
n=int(input()) a=list(map(int,input().split())) L=max(a) o=[0]*(L+1) for v in a: o[v]=1 q=[0]*(L+1) for i in range(1,L+1): j=1 while j*j<=i: if i%j==0: q[i]=max(q[i],q[i//j],q[i//(i//j)]) j+=1 q[i]+=o[i] print(max(q[i] for i in range(L+1) if o[i]))