結果

問題 No.390 最長の数列
ユーザー ああいいああいい
提出日時 2022-03-30 00:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-11-08 23:56:15
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 112 ms
98,688 KB
testcase_06 AC 663 ms
105,600 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 54 ms
57,344 KB
testcase_10 AC 174 ms
105,472 KB
testcase_11 AC 179 ms
105,472 KB
testcase_12 AC 174 ms
105,728 KB
testcase_13 AC 146 ms
94,336 KB
testcase_14 AC 192 ms
105,984 KB
testcase_15 AC 41 ms
51,456 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 62 ms
64,384 KB
testcase_18 AC 66 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int,input().split()))
x.sort()

d = dict()
for i in x:
    d[i] = 1
C = max(x) + 1
for i in x:
    u = d[i]
    for j in range(2 * i,C,i):
        if j in d:
            d[j] = max(d[j],u + 1)
ans = 0
for v in d.values():
    if v > ans:
        ans = v
print(ans)
0