結果

問題 No.390 最長の数列
ユーザー nebukuro09nebukuro09
提出日時 2016-10-15 10:00:32
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 668 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 104,564 KB
最終ジャッジ日時 2024-10-02 12:02:02
合計ジャッジ時間 4,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,784 KB
testcase_01 AC 75 ms
75,676 KB
testcase_02 AC 73 ms
75,656 KB
testcase_03 AC 73 ms
75,772 KB
testcase_04 AC 76 ms
75,296 KB
testcase_05 AC 169 ms
104,500 KB
testcase_06 AC 668 ms
103,836 KB
testcase_07 AC 73 ms
75,952 KB
testcase_08 AC 128 ms
93,620 KB
testcase_09 AC 171 ms
93,856 KB
testcase_10 AC 243 ms
104,528 KB
testcase_11 AC 254 ms
104,296 KB
testcase_12 AC 233 ms
104,564 KB
testcase_13 AC 268 ms
101,744 KB
testcase_14 AC 171 ms
91,460 KB
testcase_15 AC 79 ms
77,592 KB
testcase_16 AC 128 ms
93,740 KB
testcase_17 AC 145 ms
93,768 KB
testcase_18 AC 144 ms
94,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
x = sorted(map(int, raw_input().split()))

m = max(x)
dp = [float('-inf') for _ in xrange(m+1)]
for a in x:
    dp[a] = 1

for a in x:
    b = a*2
    c = dp[a]
    while b <= m:
        if dp[b] != float('-inf'):
            dp[b] = max(c+1, dp[b])
        b += a

print max(dp)
0