結果
問題 | No.12 限定された素数 |
ユーザー | バカらっく |
提出日時 | 2017-06-28 02:51:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 324 ms / 5,000 ms |
コード長 | 2,741 bytes |
コンパイル時間 | 812 ms |
コンパイル使用メモリ | 116,704 KB |
実行使用メモリ | 32,640 KB |
最終ジャッジ日時 | 2024-05-03 10:47:45 |
合計ジャッジ時間 | 7,308 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
32,256 KB |
testcase_01 | AC | 216 ms
32,256 KB |
testcase_02 | AC | 162 ms
32,256 KB |
testcase_03 | AC | 324 ms
32,512 KB |
testcase_04 | AC | 167 ms
32,256 KB |
testcase_05 | AC | 250 ms
32,256 KB |
testcase_06 | AC | 258 ms
32,256 KB |
testcase_07 | AC | 277 ms
32,512 KB |
testcase_08 | AC | 215 ms
32,256 KB |
testcase_09 | AC | 189 ms
32,384 KB |
testcase_10 | AC | 251 ms
32,512 KB |
testcase_11 | AC | 321 ms
32,384 KB |
testcase_12 | AC | 276 ms
32,512 KB |
testcase_13 | AC | 248 ms
32,128 KB |
testcase_14 | AC | 237 ms
32,640 KB |
testcase_15 | AC | 252 ms
32,256 KB |
testcase_16 | AC | 307 ms
32,384 KB |
testcase_17 | AC | 153 ms
32,256 KB |
testcase_18 | AC | 153 ms
32,256 KB |
testcase_19 | AC | 153 ms
32,384 KB |
testcase_20 | AC | 173 ms
32,256 KB |
testcase_21 | AC | 204 ms
32,512 KB |
testcase_22 | AC | 152 ms
32,384 KB |
testcase_23 | AC | 155 ms
32,384 KB |
testcase_24 | AC | 157 ms
32,256 KB |
testcase_25 | AC | 242 ms
32,384 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.IO; using System.Linq; using System.Collections.Generic; using System.Text; public class Program { public void Proc() { int itemCount = int.Parse(Reader.ReadLine()); char[] items = Reader.ReadLine().Split(' ').Select(a => a[0]).ToArray(); this.PrimeList = this.GetPrimeList(); int fromIdx = -1; int toIdx = -1; int ans = -1; Dictionary<char, bool> cnt = new Dictionary<char, bool>(); items.ToList().ForEach(a=>cnt.Add(a, false)); for (int i = 0; i < PrimeList.Length; i++) { string num = PrimeList[i].ToString(); if(num.All(a=>cnt.ContainsKey(a))) { if (fromIdx < 0) { fromIdx = i; } toIdx = i; num.ToList().ForEach(a => cnt[a] = true); } else { if (fromIdx >= 0 && cnt.All(a=>a.Value)) { int fromNum = 1; if (fromIdx > 0) { fromNum = PrimeList[fromIdx-1]+1; } int toNum = 5000000; if(toIdx < PrimeList.Length - 1) { toNum = PrimeList[toIdx + 1] - 1; } ans = Math.Max(ans, toNum - fromNum); } fromIdx = -1; toIdx = -1; cnt.Keys.ToList().ForEach(a => cnt[a] = false); } } if(toIdx >= 0) { int fromNum = 1; if (fromIdx>0) { fromNum = PrimeList[fromIdx - 1] + 1; } ans = Math.Max(ans, 5000000 - fromNum); } Console.WriteLine(ans); } private int[] GetPrimeList() { int num = 5000000; bool[] flags = new bool[num + 1]; List<int> ret = new List<int>(); for (int i = 2; i <= num; i++) { if (flags[i]) { continue; } ret.Add(i); int max = num / i; for (int j = 0; j <= max; j++) { flags[i*j] = true; } } return ret.ToArray(); } private int[] PrimeList; public class Reader { private static StringReader sr; public static bool IsDebug = false; public static string ReadLine() { if (IsDebug) { if (sr == null) { sr = new StringReader(InputText.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } private static string InputText = @" 5 1 2 3 4 5 "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }