結果

問題 No.979 Longest Divisor Sequence
ユーザー ngtkanangtkana
提出日時 2020-01-30 21:44:29
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 47,488 KB
最終ジャッジ日時 2024-09-16 03:57:37
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
20,608 KB
testcase_01 AC 47 ms
20,480 KB
testcase_02 AC 59 ms
20,608 KB
testcase_03 AC 59 ms
20,480 KB
testcase_04 WA -
testcase_05 AC 58 ms
20,480 KB
testcase_06 AC 69 ms
20,480 KB
testcase_07 AC 57 ms
20,608 KB
testcase_08 WA -
testcase_09 AC 55 ms
20,608 KB
testcase_10 AC 73 ms
21,120 KB
testcase_11 AC 71 ms
20,992 KB
testcase_12 AC 74 ms
21,248 KB
testcase_13 WA -
testcase_14 AC 256 ms
47,488 KB
testcase_15 AC 151 ms
29,440 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 System.Linq;
using System.Collections.Generic;

public static class Program{
    static int ALim=300001;
    public static void Main() {
        int n=int.Parse(Console.ReadLine());
        int[]a=Console.ReadLine().Split().Select(int.Parse).ToArray();

        int[]dp=new int[ALim];
        int[]exc=new int[ALim];
        for(int i=0;i<ALim;i++){
            dp[i]=-1;
        }
        int ans=0;
        while(true){
            bool found=false;

            for(int i=0;i<ALim;i++)exc[i]=n;
            for(int i=1;i<ALim;i++){
                for(int j=2*i;j<ALim;j+=i){
                    Chmin(ref exc[j], dp[i]);
                }
            }

            for(int i=0;i<ALim;i++)dp[i]=n;
            for(int i=0;i<n;i++)if(exc[a[i]]<i){
                Chmin(ref dp[a[i]],i);
                found=true;
            }
            if(!found)break;
            ans++;
        }
        Console.WriteLine(ans);
    }
    public static void Chmin(ref int x, int y){
        x=Math.Min(x,y);
    }
}
0