結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | clockln |
提出日時 | 2020-07-21 17:10:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,527 bytes |
コンパイル時間 | 1,048 ms |
コンパイル使用メモリ | 106,880 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-06-09 12:59:20 |
合計ジャッジ時間 | 3,204 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 25 ms
17,536 KB |
testcase_02 | AC | 48 ms
17,556 KB |
testcase_03 | AC | 27 ms
17,408 KB |
testcase_04 | AC | 29 ms
17,408 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
17,500 KB |
testcase_07 | AC | 33 ms
17,408 KB |
testcase_08 | AC | 36 ms
17,496 KB |
testcase_09 | AC | 30 ms
17,792 KB |
testcase_10 | RE | - |
testcase_11 | AC | 28 ms
17,280 KB |
testcase_12 | AC | 40 ms
17,500 KB |
testcase_13 | AC | 29 ms
17,664 KB |
testcase_14 | AC | 29 ms
17,536 KB |
testcase_15 | AC | 36 ms
17,620 KB |
testcase_16 | AC | 34 ms
17,636 KB |
testcase_17 | AC | 42 ms
17,500 KB |
testcase_18 | AC | 47 ms
17,428 KB |
testcase_19 | AC | 42 ms
17,496 KB |
testcase_20 | AC | 40 ms
17,244 KB |
testcase_21 | AC | 27 ms
17,536 KB |
testcase_22 | AC | 40 ms
17,368 KB |
testcase_23 | AC | 39 ms
17,628 KB |
testcase_24 | AC | 40 ms
17,752 KB |
testcase_25 | AC | 34 ms
17,632 KB |
testcase_26 | AC | 45 ms
17,752 KB |
testcase_27 | AC | 39 ms
17,624 KB |
testcase_28 | AC | 33 ms
17,408 KB |
testcase_29 | AC | 45 ms
17,756 KB |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
17,492 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; using System.Collections.Generic; using System.Linq; using System.IO; using static System.Console; using static System.Math; public class Solve{ static public int mod = 1000000007; static public string al = "abcdefghijklmnopqrstuvwxyz"; public static void Main(){ // 方針 // var k = rint(); var n = rint(); var list = new List<int>(); if(k <= 2) list.Add(2); for(int i=Max(k,3);i<=n;i++){ if(i%2 == 0) continue; var checker = true; for(int j=3;j*j<=i;j+=2){ if(i%j == 0){ checker = false; break; } } if(checker) list.Add(i); } var hash = new int[list.Count]; for(int i=0;i<list.Count;i++){ var temp = list[i]; while(temp > 0){ hash[i] += temp%10; temp /= 10; hash[i] = hash[i]%10 + hash[i]/10; } } var l = 0; var ans = 0; var count = 0; var dic = new Dictionary<int,bool>(); for(int r=0;r<list.Count;r++){ if(!dic.ContainsKey(hash[r])){ dic.Add(hash[r],true); }else{ if(dic.Count >= count){ count = dic.Count; ans = list[l]; } dic.Remove(hash[l]); l++; r--; } } if(dic.Count >= count){ ans = list[++l]; } WriteLine(ans); } public static void swap(ref int a,ref int b){int temp = a;a= b;b = temp;} static void charswap(ref char a,ref char b){char temp = a;a= b;b = temp;} static int ncr(int n,int r){if(n<r)return 0;r = Min(r,n-r);long nn = 1;for(int i=n-r+1;i<=n;i++){nn = nn*i%mod;}long rr = 1;for(int i=1;i<=r;i++){rr = rr*i%mod;}rr = square((int)rr,mod-2);nn = nn * rr %mod;return (int)nn;} // a^b mod static int square(int a,int b){string binary = Convert.ToString(b,2);int bileng = binary.Length;long a_power = a;long value = 1;for(int i=bileng-1;i>=0;i--){if(binary[i] == '1'){value = value*a_power%mod;}a_power = a_power*a_power%mod;}return (int)value;} static int square2(int a,int b){long output = 1;var list = new List<long>();int sh = 1;long n = a;list.Add(a);while(sh < b){sh *= 2;n = n*n%mod;list.Add(n);}for(int i=list.Count-1;i>=0;i--){if(b > sh){b -= sh;sh /= 2;output = output*list[i]%mod;}}return (int)output;} //各種読取 static string rstr(){ return ReadLine(); } static int rint(){ return int.Parse(ReadLine()); } static long rlong(){ return long.Parse(ReadLine()); } static string[] stra(){ return ReadLine().Split(' '); } static char[] chara(){ string[] a=stra();string b="";for(int i=0;i<a.Length;i++){b+=a[i];}return b.ToCharArray();} static int[] inta(){ string[] read_str_array = ReadLine().Split(' '); int[] return_int_array = new int[read_str_array.Length]; for(int countup_i=0;countup_i<read_str_array.Length;countup_i++){ return_int_array[countup_i] = int.Parse(read_str_array[countup_i]); } return return_int_array; } static int[,] inta2(int num_array,int in_array){ int[,] int_array2 = new int[num_array,in_array]; for(int i=0;i<num_array;i++){ int[] temp_array = inta(); for(int j=0;j<in_array;j++){ int_array2[i,j] = temp_array[j]; } } return int_array2; } static long[] longa(){ string[] read_str_array = ReadLine().Split(' '); long[] return_long_array = new long[read_str_array.Length]; for(long countup_i=0;countup_i<read_str_array.Length;countup_i++){ return_long_array[countup_i] = long.Parse(read_str_array[countup_i]); } return return_long_array; } static double[] doublea(){ string[] read_str_array = ReadLine().Split(' '); double[] return_double_array = new double[read_str_array.Length]; for(long countup_i=0;countup_i<read_str_array.Length;countup_i++){ return_double_array[countup_i] = double.Parse(read_str_array[countup_i]); } return return_double_array; } // ----------------------------- static long GCD(long a,long b){ if(a < b){ long temp = a; a = b; b = temp; } if(a % b == 0){ return b; } else{ long temp = b; b = a%b; a = temp; return GCD(a,b); } } static long LCM(long a,long b){ return a * b / GCD(a,b); } static void WriteArray(int[,] a,int b,int c){for(int i=0;i<b;i++){for(int j=0;j<c;j++){if(j!=0) Write(" ");Write(a[i,j]);}WriteLine();}} }