結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | Himatsubushin |
提出日時 | 2019-12-24 10:53:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,744 bytes |
コンパイル時間 | 1,145 ms |
コンパイル使用メモリ | 103,936 KB |
実行使用メモリ | 18,372 KB |
最終ジャッジ日時 | 2024-09-16 16:53:37 |
合計ジャッジ時間 | 3,017 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
17,664 KB |
testcase_01 | AC | 20 ms
17,536 KB |
testcase_02 | AC | 29 ms
18,372 KB |
testcase_03 | AC | 21 ms
17,664 KB |
testcase_04 | AC | 21 ms
17,520 KB |
testcase_05 | AC | 22 ms
17,756 KB |
testcase_06 | AC | 27 ms
17,956 KB |
testcase_07 | AC | 24 ms
17,624 KB |
testcase_08 | AC | 26 ms
17,760 KB |
testcase_09 | AC | 25 ms
17,632 KB |
testcase_10 | WA | - |
testcase_11 | AC | 23 ms
17,536 KB |
testcase_12 | AC | 27 ms
18,116 KB |
testcase_13 | AC | 24 ms
17,532 KB |
testcase_14 | AC | 24 ms
17,500 KB |
testcase_15 | AC | 25 ms
17,860 KB |
testcase_16 | AC | 25 ms
17,624 KB |
testcase_17 | AC | 27 ms
17,940 KB |
testcase_18 | AC | 29 ms
18,196 KB |
testcase_19 | AC | 27 ms
18,068 KB |
testcase_20 | AC | 25 ms
18,040 KB |
testcase_21 | AC | 21 ms
17,536 KB |
testcase_22 | AC | 26 ms
17,912 KB |
testcase_23 | AC | 27 ms
17,808 KB |
testcase_24 | AC | 27 ms
17,916 KB |
testcase_25 | AC | 25 ms
17,616 KB |
testcase_26 | AC | 26 ms
17,900 KB |
testcase_27 | AC | 25 ms
17,836 KB |
testcase_28 | AC | 24 ms
17,664 KB |
testcase_29 | AC | 28 ms
18,072 KB |
testcase_30 | AC | 27 ms
18,036 KB |
testcase_31 | AC | 26 ms
18,052 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.Collections.Generic; namespace No006_使いものにならないハッシュ { class Program { static void Main() { int k = int.Parse(Console.ReadLine()); int n = int.Parse(Console.ReadLine()); bool[] numbers = new bool[n + 1]; var prime = new List<int>(); int start = 0, max = 0; if (k <= 2) prime.Add(2); for (int i = 3; i <= n; i += 2) numbers[i] = true; for (int i = 3; i < n; i += 2) for (int j = 2; i * j <= n; j++) numbers[i * j] = false; for (int i = k + 1 - k % 2; i <= n; i += 2) if (numbers[i]) prime.Add(i); for (int i = 0; i < prime.Count - 1; i++) { bool[] checker = new bool[10]; int count = 1; checker[hash(prime[i])] = true; for (int j = 1; j < 11 && i + j < prime.Count; j++) { int value = hash(prime[i + j]); if (!checker[value]) { checker[value] = true; count++; } else break; } if (max <= count) { max = count; start = prime[i]; } } Console.WriteLine(start); } static int hash(int number) { while (number >= 10) number = number / 10 + number % 10; return number; } } }