結果
問題 | No.390 最長の数列 |
ユーザー | rlangevin |
提出日時 | 2023-02-04 01:59:24 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 461 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 82,136 KB |
実行使用メモリ | 110,940 KB |
最終ジャッジ日時 | 2024-07-02 23:54:58 |
合計ジャッジ時間 | 5,204 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
99,788 KB |
testcase_01 | AC | 162 ms
99,076 KB |
testcase_02 | AC | 161 ms
99,252 KB |
testcase_03 | AC | 189 ms
99,748 KB |
testcase_04 | AC | 173 ms
99,980 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 171 ms
99,588 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 276 ms
110,940 KB |
testcase_15 | AC | 184 ms
99,848 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
from collections import * def enum_div(M): L = [[1] for i in range(M + 1)] for i in range(2, M + 1): for j in range(i, M + 1, i): L[j].append(i) return L N = int(input()) X = list(map(int, input().split())) X.sort() L = enum_div(100005) D = defaultdict(int) for i in range(N): val = 0 for v in L[X[i]]: val = max(val, D[v]) D[X[i]] = val + 1 ans = 0 for k, v in D.items(): ans = max(ans, v) print(ans)