結果

問題 No.390 最長の数列
ユーザー AreTrashAreTrash
提出日時 2016-09-04 18:36:23
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,200 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 113,880 KB
実行使用メモリ 120,824 KB
最終ジャッジ日時 2024-04-27 16:31:38
合計ジャッジ時間 8,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,324 KB
testcase_01 AC 29 ms
25,456 KB
testcase_02 AC 33 ms
27,324 KB
testcase_03 AC 31 ms
25,516 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No390{
    public class Program{
        public static void Main(string[] args){
            var sr = new StreamReader();
            //---------------------------------
            var N = sr.Next<int>();
            var X = sr.Next<int>(N).OrderBy(x => x).ToList();

            var res = 0;
            while(X.Count > 0){
                var cnt = 0;
                var t = 1;
                for(var i = 0; i < X.Count;){
                    if(X[i] % t == 0){
                        t = X[i];
                        X.RemoveAt(i);
                        cnt++;
                    } else{
                        i++;
                    }
                }
                res = Math.Max(res, cnt);
            }

            Console.WriteLine(res);
            //---------------------------------
        }
    }

    public class StreamReader{
        private readonly char[] _c = {' '};
        private int _index = -1;
        private string[] _input = new string[0];
        private readonly System.IO.StreamReader _sr = new System.IO.StreamReader(Console.OpenStandardInput());

        public T Next<T>(){
            if(_index == _input.Length - 1){
                _index = -1;
                while(true){
                    string rl = _sr.ReadLine();
                    if(rl == null){
                        if(typeof(T).IsClass) return default(T);
                        return (T)typeof(T).GetField("MinValue").GetValue(null);
                    }
                    if(rl != ""){
                        _input = rl.Split(_c, StringSplitOptions.RemoveEmptyEntries);
                        break;
                    }
                }
            }
            return (T)Convert.ChangeType(_input[++_index], typeof(T), System.Globalization.CultureInfo.InvariantCulture);
        }

        public T[] Next<T>(int x){
            var ret = new T[x];
            for(var i = 0; i < x; ++i) ret[i] = Next<T>();
            return ret;
        }

        public T[][] Next<T>(int y, int x){
            var ret = new T[y][];
            for(var i = 0; i < y; ++i) ret[i] = Next<T>(x);
            return ret;
        }
    }
}
0