結果

問題 No.434 占い
ユーザー keikei
提出日時 2018-12-15 17:00:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 2,874 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 169,680 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 06:18:00
合計ジャッジ時間 3,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 13 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 9 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 17 ms
6,944 KB
testcase_20 AC 129 ms
6,940 KB
testcase_21 AC 15 ms
6,944 KB
testcase_22 AC 14 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 9 ms
6,940 KB
testcase_27 AC 15 ms
6,940 KB
testcase_28 AC 15 ms
6,944 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 101 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void init_primes()':
main.cpp:27:23: warning: iteration 99998 invokes undefined behavior [-Waggressive-loop-optimizations]
   27 |         if(!divprime[i]){
      |             ~~~~~~~~~~^
main.cpp:26:21: note: within this loop
   26 |     for(ll i = 2; i <= MAX_PRIME;i++){
      |                   ~~^~~~~~~~~~~~

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; }
inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; }
template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; }
template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; }
template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; }
template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; }

/*
 <url:https://yukicoder.me/problems/no/434>
 問題文============================================================
 =================================================================
 解説=============================================================
 ================================================================
 */

const ll MAX_PRIME = 1e5;
int divprime[MAX_PRIME];
void init_primes(){
    for(ll i = 2; i <= MAX_PRIME;i++){
        if(!divprime[i]){
            for(ll j = i*i; j <= MAX_PRIME;j+=i) divprime[j]=i;
        }
    }
}

const ll MOD = 9;
// a^b % MOD;
ll powmod(ll a,ll b) {ll res=1;a%=MOD; for(;b;b>>=1){if(b&1)res=res*a%MOD;a=a*a%MOD;}return res;}


template<class Type>
Type solve(Type res = Type()){
    init_primes();
    int T; cin >> T;
    while(T--){
        string S; cin >> S;
        if(atoll(S.c_str()) == 0) {
            cout << 0 << endl;
            continue;
        }
        ll ans = 0;
        int sz = (int)S.length();
        int num[10] = {};
        for(int i = 0; i < sz;i++){
            if(num[3] < 2){
                ll x = 1;
                for(int j = 2; j < 9;j++) x *= powmod(j,num[j]);
                ans += x*(S[i]-'0');
            }else{
                ans += 9*(S[i]-'0');
            }
            
            if(i < sz-1){
                ll x = sz-1-i;
                ll y = 1+i;
                while(divprime[x]){ num[divprime[x]%9]++; x /= divprime[x];}
                num[x%9]++;
                while(divprime[y]){ num[divprime[y]%9]--; y /= divprime[y];}
                num[y%9]--;
            }
        }
        while(ans>=10) ans = ans%10+ans/10;
        cout << ans << endl;
    }
    return res;
}
int main(void) {
    cin.tie(0); ios::sync_with_stdio(false);
    solve<ll>(0);
    //cout << fixed << setprecision(12) << solve<ll>() << endl;
    return 0;
}
0