結果

問題 No.12 限定された素数
ユーザー FF256grhyFF256grhy
提出日時 2015-05-28 15:56:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 861 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 21,108 KB
最終ジャッジ日時 2024-05-03 09:27:42
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
21,092 KB
testcase_01 AC 68 ms
21,080 KB
testcase_02 AC 65 ms
20,932 KB
testcase_03 AC 80 ms
20,992 KB
testcase_04 AC 60 ms
20,996 KB
testcase_05 AC 74 ms
21,032 KB
testcase_06 AC 69 ms
21,108 KB
testcase_07 AC 71 ms
21,084 KB
testcase_08 AC 72 ms
20,948 KB
testcase_09 AC 67 ms
21,012 KB
testcase_10 AC 57 ms
21,040 KB
testcase_11 AC 75 ms
20,992 KB
testcase_12 AC 75 ms
21,068 KB
testcase_13 AC 77 ms
20,992 KB
testcase_14 AC 67 ms
21,104 KB
testcase_15 AC 63 ms
20,912 KB
testcase_16 AC 65 ms
20,980 KB
testcase_17 AC 79 ms
20,992 KB
testcase_18 AC 65 ms
21,008 KB
testcase_19 AC 66 ms
20,964 KB
testcase_20 AC 62 ms
20,916 KB
testcase_21 AC 60 ms
21,072 KB
testcase_22 AC 73 ms
20,992 KB
testcase_23 AC 80 ms
21,008 KB
testcase_24 AC 75 ms
21,088 KB
testcase_25 AC 69 ms
21,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:15:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 scanf("%d", &temp);
      |                 ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define MAX 5000000

int check(int);
int eq();

int n, digit[10], memo[10], table[MAX + 1];

int main(void) {
	scanf("%d", &n);
	int i;
	for(i = 0; i < n; i++) {
		int temp;
		scanf("%d", &temp);
		digit[temp] = 1;
	}
	
	table[1] = 1;
	int max = 0, counter = 0;
	for(i = 1; i <= MAX; i++) {
		if(table[i] == 0) {
			int m = i * 2;
			while(m <= MAX) {
				table[m] = 1;
				m += i;
			}
			if( ! check(i) ) {
				counter = 0;
				int j;
				for(j = 0; j < 10; j++) { memo[j] = 0; }
				continue;
			}
		}
		counter++;
		if( eq() ) { max = (max < counter) ? counter : max; }
	}
	
	printf("%d\n", max - 1);
	
	return 0;
}

int check(int i) {
	while(i) {
		if(digit[i % 10] == 0) { return 0; }
		memo[i % 10] = 1;
		i /= 10;
	}
	return 1;
}

int eq() {
	int i;
	for(i = 0; i < 10; i++) {
		if(digit[i] != memo[i]) { return 0; }
	}
	return 1;
}
0