結果

問題 No.2218 Multiple LIS
ユーザー kakel-sankakel-san
提出日時 2023-08-26 19:49:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 298 ms / 3,000 ms
コード長 955 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-06-07 15:21:13
合計ジャッジ時間 7,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,896 KB
testcase_01 AC 29 ms
19,016 KB
testcase_02 AC 28 ms
18,888 KB
testcase_03 AC 29 ms
19,020 KB
testcase_04 AC 28 ms
18,888 KB
testcase_05 AC 28 ms
18,888 KB
testcase_06 AC 29 ms
19,008 KB
testcase_07 AC 28 ms
19,012 KB
testcase_08 AC 28 ms
19,012 KB
testcase_09 AC 28 ms
19,020 KB
testcase_10 AC 26 ms
18,888 KB
testcase_11 AC 28 ms
18,888 KB
testcase_12 AC 32 ms
19,416 KB
testcase_13 AC 32 ms
19,516 KB
testcase_14 AC 33 ms
19,600 KB
testcase_15 AC 32 ms
19,612 KB
testcase_16 AC 33 ms
19,268 KB
testcase_17 AC 33 ms
19,272 KB
testcase_18 AC 29 ms
19,028 KB
testcase_19 AC 32 ms
19,400 KB
testcase_20 AC 32 ms
19,492 KB
testcase_21 AC 43 ms
21,120 KB
testcase_22 AC 98 ms
26,240 KB
testcase_23 AC 137 ms
28,160 KB
testcase_24 AC 57 ms
23,552 KB
testcase_25 AC 149 ms
29,184 KB
testcase_26 AC 196 ms
31,360 KB
testcase_27 AC 199 ms
31,360 KB
testcase_28 AC 196 ms
31,104 KB
testcase_29 AC 197 ms
31,104 KB
testcase_30 AC 198 ms
31,232 KB
testcase_31 AC 117 ms
30,336 KB
testcase_32 AC 117 ms
30,336 KB
testcase_33 AC 118 ms
30,208 KB
testcase_34 AC 119 ms
30,336 KB
testcase_35 AC 117 ms
30,208 KB
testcase_36 AC 67 ms
28,672 KB
testcase_37 AC 298 ms
32,512 KB
testcase_38 AC 28 ms
19,140 KB
testcase_39 AC 28 ms
19,016 KB
testcase_40 AC 232 ms
31,104 KB
testcase_41 AC 232 ms
31,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var dp = new int[100001];
        foreach (var ai in a)
        {
            var max = 0;
            foreach (var d in Divs(ai)) max = Math.Max(max, dp[d]);
            dp[ai] = Math.Max(dp[ai], max + 1);
        }
        WriteLine(dp.Max());
    }
    static List<int> Divs(int n)
    {
        var ans = new List<int>();
        for (var i = 1; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                ans.Add(i);
                if (i * i < n) ans.Add(n / i);
            }
        }
        return ans;
    }
}
0