結果
問題 | No.390 最長の数列 |
ユーザー | AreTrash |
提出日時 | 2016-09-04 18:36:23 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,200 bytes |
コンパイル時間 | 4,609 ms |
コンパイル使用メモリ | 111,456 KB |
実行使用メモリ | 69,156 KB |
最終ジャッジ日時 | 2024-11-15 20:16:03 |
合計ジャッジ時間 | 48,569 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
66,744 KB |
testcase_01 | AC | 32 ms
36,316 KB |
testcase_02 | AC | 32 ms
66,564 KB |
testcase_03 | AC | 32 ms
68,532 KB |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 30 ms
25,012 KB |
testcase_08 | AC | 31 ms
25,128 KB |
testcase_09 | AC | 31 ms
24,816 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 31 ms
27,164 KB |
testcase_16 | AC | 32 ms
25,008 KB |
testcase_17 | AC | 123 ms
25,920 KB |
testcase_18 | AC | 262 ms
69,156 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } } }