POJ 3696 The Luckiest Number 欧拉函数

是否存在n能整除的m使m各位都是8。

m=89(10x1)=kn

810x1gcd(8,n)=9kngcd(8,n)

gcd(8gcd(8,n),ngcd(8,n))=1

q=9ngcd(8,n)
gcd(8gcd(8,n),q)=1

10x1modq

aφ(p)1modp

的条件是 gcd(a,p)=1
gcd(10,q)=1
10φ(q)1modq

不过 φ(q) 不是最小的,需要枚举 φ(q) 的因子并判断合法性。

似乎和原根求法有点像?

#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
ll st[1000005], f;
ll gcd(ll a, ll b) { return !b ? a : gcd(b, a % b); }
ll phi(ll x) {
    ll ans = 1, i, y = x;
    for (i = 2; i * i <= y; ++i)
        if (x % i == 0) {
            x /= i, ans *= i - 1;
            while (x % i == 0) x /= i, ans *= i;
        }
    if (x > 1) ans *= x - 1;
    return ans;
}
ll quick_mul(ll a, ll b) {
    ll ans = 0;
    for (; b; b >>= 1, a = (a << 1) % f)
        if (b & 1) ans = (ans + a) % f;
    return ans;
}
ll quick_pow(ll a, ll b) {
    ll ans = 1;
    for (; b; b >>= 1, a = quick_mul(a, a))
        if (b & 1) ans = quick_mul(ans, a);
    return ans;
}
int main() {
    int kase = 0;
    ll x, m, i, sz;
    while (scanf("%lld", &x) == 1 && x) {
        f = 9 * x / gcd(8, 9 * x);
        m = phi(f);
        for (sz = 0, i = 1; i * i <= m; ++i) if (m % i == 0) {
            st[sz++] = i;
            if (i * i != m) st[sz++] = m / i;
        }
        sort(st, st + sz);
        for (i = 0; i < sz; ++i) if (quick_pow(10, st[i]) % f == 1) {
            printf("Case %d: %lld\n", ++kase, st[i]);
            i = 2147483640;
        }
        if (i != 2147483641) printf("Case %d: 0\n", ++kase);
    }
    return 0;
}

The Luckiest number

Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 4884 Accepted: 1313

Description

Chinese people think of ‘8’ as the lucky digit. Bob also likes digit ‘8’. Moreover, Bob has his own lucky number L. Now he wants to construct his luckiest number which is the minimum among all positive integers that are a multiple of L and consist of only digit ‘8’.

Input

The input consists of multiple test cases. Each test case contains exactly one line containing L(1 ≤ L ≤ 2,000,000,000).

The last test case is followed by a line containing a zero.

Output

For each test case, print a line containing the test case number( beginning with 1) followed by a integer which is the length of Bob’s luckiest number. If Bob can’t construct his luckiest number, print a zero.

Sample Input

8
11
16
0

Sample Output

Case 1: 1
Case 2: 2
Case 3: 0

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值