結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | バカらっく |
提出日時 | 2017-06-25 16:42:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,512 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 108,800 KB |
実行使用メモリ | 23,360 KB |
最終ジャッジ日時 | 2024-10-04 08:55:52 |
合計ジャッジ時間 | 3,258 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
19,072 KB |
testcase_02 | AC | 59 ms
22,972 KB |
testcase_03 | AC | 30 ms
20,352 KB |
testcase_04 | AC | 33 ms
20,836 KB |
testcase_05 | WA | - |
testcase_06 | AC | 45 ms
22,972 KB |
testcase_07 | AC | 37 ms
21,268 KB |
testcase_08 | AC | 44 ms
22,676 KB |
testcase_09 | AC | 32 ms
20,020 KB |
testcase_10 | WA | - |
testcase_11 | AC | 32 ms
20,608 KB |
testcase_12 | AC | 48 ms
22,840 KB |
testcase_13 | AC | 29 ms
19,636 KB |
testcase_14 | AC | 31 ms
20,164 KB |
testcase_15 | AC | 44 ms
23,084 KB |
testcase_16 | AC | 36 ms
21,540 KB |
testcase_17 | AC | 48 ms
22,832 KB |
testcase_18 | AC | 58 ms
22,976 KB |
testcase_19 | AC | 48 ms
23,096 KB |
testcase_20 | AC | 46 ms
23,092 KB |
testcase_21 | AC | 28 ms
19,840 KB |
testcase_22 | AC | 46 ms
23,088 KB |
testcase_23 | AC | 45 ms
23,220 KB |
testcase_24 | AC | 45 ms
23,360 KB |
testcase_25 | AC | 36 ms
21,888 KB |
testcase_26 | AC | 50 ms
23,092 KB |
testcase_27 | AC | 44 ms
22,836 KB |
testcase_28 | AC | 38 ms
22,308 KB |
testcase_29 | AC | 51 ms
23,232 KB |
testcase_30 | WA | - |
testcase_31 | AC | 46 ms
23,096 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 fromNum = int.Parse(Reader.ReadLine()); int toNum = int.Parse(Reader.ReadLine()); SetPrimeList(toNum); int[] flags = new int[10].Select(a=>-1).ToArray(); int maxlen = 0; int firstPrime = 0; for (int i = 0; i < PrimeList.Length; i++) { if (PrimeList[i] < fromNum) { continue; } if(PrimeList[i]>toNum) { if (i - flags.Where(a=>a>=0).Min()>=maxlen) { firstPrime = PrimeList[flags.Where(a => a >= 0).Min()]; } break; } int prime = PrimeList[i]; int hash = GetHash(prime); if(flags[hash]>=0) { int idx = flags.Where(a => a >= 0).Min(); int len = flags.Where(a => a >= 0).Max() - idx + 1; if (maxlen <= len) { maxlen = len; firstPrime = PrimeList[idx]; } int target = flags[hash]; for (int j = 0; j < flags.Length; j++) { if (flags[j] <= target) { flags[j] = -1; } } } flags[hash] = i; } Console.WriteLine(firstPrime); } private int GetHash(int num) { int tmp = num; while(tmp >= 10) { tmp = tmp.ToString().Select(a => int.Parse(a.ToString())).Sum(); } return tmp; } private void SetPrimeList(int num) { bool[] flags = new bool[num + 1]; List<int> tmp = new List<int>(); for (int i = 2; i <= num; i++) { if (flags[i]) { continue; } tmp.Add(i); int max = num / i; for (int j = 1; j <= max; j++) { flags[i * j] = true; } } this.PrimeList = tmp.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 = @" 10 100 "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }