結果

問題 No.390 最長の数列
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-29 23:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,578 ms / 5,000 ms
コード長 297 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-09-29 23:09:44
合計ジャッジ時間 9,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,356 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 33 ms
51,840 KB
testcase_05 AC 1,578 ms
103,040 KB
testcase_06 AC 1,037 ms
105,728 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 55 ms
73,640 KB
testcase_09 AC 54 ms
73,728 KB
testcase_10 AC 1,136 ms
105,464 KB
testcase_11 AC 1,150 ms
105,152 KB
testcase_12 AC 1,135 ms
105,856 KB
testcase_13 AC 871 ms
102,144 KB
testcase_14 AC 480 ms
87,936 KB
testcase_15 AC 39 ms
58,240 KB
testcase_16 AC 58 ms
75,904 KB
testcase_17 AC 114 ms
82,560 KB
testcase_18 AC 163 ms
84,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
  if o[i]==0:
    continue
  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]))
0