結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | bal4u |
提出日時 | 2019-05-12 21:21:57 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 2,261 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 7,480 KB |
最終ジャッジ日時 | 2024-07-05 17:13:39 |
合計ジャッジ時間 | 1,644 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
7,296 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 21 ms
7,296 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 54 ms
7,256 KB |
testcase_10 | AC | 30 ms
7,296 KB |
testcase_11 | AC | 36 ms
7,304 KB |
testcase_12 | AC | 44 ms
7,296 KB |
testcase_13 | AC | 46 ms
7,424 KB |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | AC | 37 ms
7,296 KB |
testcase_16 | AC | 39 ms
7,480 KB |
testcase_17 | AC | 28 ms
6,912 KB |
testcase_18 | AC | 36 ms
7,296 KB |
ソースコード
// yukicoder 774 tatyamと素数大富豪 // 2019.5.12 bal4u #include <stdio.h> #include <stdlib.h> typedef long long ll; typedef unsigned long long ull; //// ラビン素数テスト #define mulmod128(a,b,n) ((__int128_t)a*b % n) ull powmod(ull a, ull k, ull n) { ull bit = 0x2000000000000000LL, p = 1; while (bit) { if (p > 1) p = mulmod128(p, p, n); if (k & bit) p = mulmod128(p, a, n); bit >>= 1; } return p; } unsigned xorshift(int id) { static unsigned y = 2463534242; y = y ^ (y << 13), y = y ^ (y >> 17), y = y ^ (y << 5); return y; } ull gcd(ull a, ull b) { ull r; while (b != 0) r = a % b, a = b, b = r; return a; } int suspect(ull n) { int i, j, b; ull t, u, x; u = n-1, t = 0; while ((u & 1) == 0) u >>= 1, t++; for (j = 0; j < 6; j++) { do b = xorshift(j) % n; while (gcd(b, n) > 1); x = powmod(b, u, n); if (x == 1 || x == n-1) continue; for (i = 1; i < t; i++) { x = mulmod128(x, x, n); if (x == 1) return 0; if (x == n-1) break; } if (i == t) return 0; } return 1; } int miller_rabin(ull n) { if (n <= 1) return 0; if (n == 2 || n == 3) return 1; if ((n & 1) == 0) return 0; return suspect(n); } int a[15], n, K; ll tbl[363000]; int sz; void showperm(char *p) { int i; long long x; x = 0; for (i = 0; i < n; i++) { if (a[p[i]] >= 10) x *= 100; else x *= 10; x += a[p[i]]; } tbl[sz++] = x; } // Kの数{ 1,2,3,4,5,6,7,8,9 } の順列を生成する K!個 void genperm() { int k, t; char c[12], *pc, *q; static char p[12] = { 1,1,1,1,1,1,1,1,1 }; q = p, pc = c; for (k = 1; k <= K; ) *q++ = *pc++ = k++; // 1 2 3 のように1から k = 1, pc = c; do { t = *(p + k); *(p + k) = *(q = p + ((k & 1) ? *pc : 0)); *q = t; showperm(p); k = 1, pc = c; while (*pc == 0) *pc++ = k++; (*pc)--; } while (k < K); } int cmp(const void *a, const void *b) { ll t = *(ll *)b - *(ll *)a; if (t < 0) return -1; return t >= 0; } int main() { int i; long long ans, pre; scanf("%d", &n); for (i = 1; i <= n; i++) scanf("%d", a+i); K = n; genperm(); qsort(tbl, sz, sizeof(ll), cmp); ans = pre = -1LL; for (i = 0; i < sz; i++) { if (tbl[i] != pre && miller_rabin(tbl[i])) { ans = tbl[i]; break; } pre = tbl[i]; } printf("%lld\n", ans); return 0; }