結果

問題 No.6 使いものにならないハッシュ
ユーザー kou6839kou6839
提出日時 2014-11-09 01:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 1,406 bytes
コンパイル時間 4,166 ms
コンパイル使用メモリ 79,248 KB
実行使用メモリ 56,656 KB
最終ジャッジ日時 2024-09-16 16:22:10
合計ジャッジ時間 9,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,032 KB
testcase_01 AC 131 ms
54,132 KB
testcase_02 AC 191 ms
56,656 KB
testcase_03 AC 157 ms
53,756 KB
testcase_04 AC 166 ms
54,244 KB
testcase_05 AC 167 ms
54,188 KB
testcase_06 AC 177 ms
54,444 KB
testcase_07 AC 162 ms
54,508 KB
testcase_08 AC 179 ms
53,844 KB
testcase_09 AC 171 ms
53,920 KB
testcase_10 AC 126 ms
53,712 KB
testcase_11 AC 158 ms
53,512 KB
testcase_12 AC 176 ms
53,968 KB
testcase_13 AC 167 ms
54,296 KB
testcase_14 AC 170 ms
53,916 KB
testcase_15 AC 175 ms
54,116 KB
testcase_16 AC 160 ms
54,288 KB
testcase_17 AC 183 ms
54,192 KB
testcase_18 AC 194 ms
56,280 KB
testcase_19 AC 178 ms
54,296 KB
testcase_20 AC 166 ms
54,140 KB
testcase_21 AC 153 ms
54,096 KB
testcase_22 AC 179 ms
53,852 KB
testcase_23 AC 179 ms
54,276 KB
testcase_24 AC 179 ms
54,076 KB
testcase_25 AC 172 ms
53,948 KB
testcase_26 AC 168 ms
53,876 KB
testcase_27 AC 173 ms
54,220 KB
testcase_28 AC 176 ms
54,476 KB
testcase_29 AC 178 ms
56,576 KB
testcase_30 AC 181 ms
54,172 KB
testcase_31 AC 179 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int K=sc.nextInt();
		int N = sc.nextInt();
		boolean[] nera = new boolean[N+1];
		Arrays.fill(nera, true);
		for(int i=2;i*i<=N;i++){
			if(nera[i]){
				for(int j=i*2;j<=N;j+=i){
					if(nera[j])nera[j]=false;
				}
			}
		}
		ArrayList<Integer> sosuu = new ArrayList<>();
		ArrayList<Integer> ha = new ArrayList<>();
		for(int i=K;i<=N;i++){
			if(i==1) continue;
			if(nera[i]){
				int temp=i;
				sosuu.add(i);
				while(temp>9){
					int temp2=temp;
					temp=0;
					while(temp2!=0){
						temp+=temp2%10;
						temp2=temp2/10;
					}
				}
				ha.add(temp);
			}
		}
		int t=0;
		int s=0;
		Queue<Integer> queue = new LinkedList<>();
		int ans=0;
		int ansmemo=0;
		int temp=0;
		int max=0;
		while(true){
			while(t<ha.size()){				
				if(queue.contains(ha.get(t))){
					if(t-s>=ans){
						ans=t-s;
						max=sosuu.get(s);
					}
					break;
				}
				if(t==ha.size()-1){
					int temp1=ha.get(t);
					queue.offer(temp1);
					if(t-s+1>=ans){
						max=sosuu.get(s);
					}
					System.out.println(max);
					return;
					
				}
				queue.offer(ha.get(t++));
			}
			while(true){
				int temp1=queue.poll();
				s++;
				if(temp1==ha.get(t)){
					break;
				}
				
			}
			
			
		}
		
	}
}	
0