結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,140 KB
testcase_01 AC 29 ms
18,888 KB
testcase_02 AC 29 ms
19,016 KB
testcase_03 AC 31 ms
18,892 KB
testcase_04 AC 30 ms
19,144 KB
testcase_05 AC 30 ms
19,156 KB
testcase_06 AC 28 ms
19,012 KB
testcase_07 AC 28 ms
19,020 KB
testcase_08 AC 29 ms
18,892 KB
testcase_09 AC 28 ms
19,020 KB
testcase_10 AC 28 ms
19,148 KB
testcase_11 AC 30 ms
19,144 KB
testcase_12 AC 33 ms
19,408 KB
testcase_13 AC 35 ms
19,384 KB
testcase_14 AC 35 ms
19,472 KB
testcase_15 AC 33 ms
19,480 KB
testcase_16 AC 34 ms
19,516 KB
testcase_17 AC 36 ms
19,536 KB
testcase_18 AC 28 ms
19,028 KB
testcase_19 AC 34 ms
19,512 KB
testcase_20 AC 34 ms
19,740 KB
testcase_21 AC 42 ms
21,632 KB
testcase_22 AC 94 ms
26,624 KB
testcase_23 AC 135 ms
28,032 KB
testcase_24 AC 53 ms
23,424 KB
testcase_25 AC 147 ms
29,440 KB
testcase_26 AC 198 ms
31,488 KB
testcase_27 AC 201 ms
31,232 KB
testcase_28 AC 211 ms
31,360 KB
testcase_29 AC 197 ms
31,360 KB
testcase_30 AC 197 ms
31,232 KB
testcase_31 AC 119 ms
30,336 KB
testcase_32 AC 121 ms
30,336 KB
testcase_33 AC 121 ms
30,336 KB
testcase_34 AC 119 ms
30,592 KB
testcase_35 AC 123 ms
30,464 KB
testcase_36 AC 64 ms
28,928 KB
testcase_37 AC 290 ms
32,640 KB
testcase_38 AC 29 ms
19,144 KB
testcase_39 AC 30 ms
19,272 KB
testcase_40 AC 227 ms
31,360 KB
testcase_41 AC 228 ms
31,232 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;
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0