結果

問題 No.1747 Many Formulae 2
ユーザー rogi52
提出日時 2022-10-03 22:03:11
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 196,916 KB
最終ジャッジ日時 2025-02-07 20:59:07
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

bool is_prime(ll n) {
    if(n < 2) return false;
    if(n == 2) return true;
    if(n % 2 == 0) return false;
    for(ll i = 3; i * i <= n; i += 2) if(n % i == 0) return false;
    return true;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    string s; cin >> s;
    int n = int(s.size());
    int ans = 0;
    rep(S,1<<(n-1)) {
        vector<ll> v = {s[0] - '0'};
        rep(i,n-1) {
            if(S & (1 << i)) {
                v.push_back(s[i + 1] - '0');
            } else {
                v.back() = v.back() * 10 + (s[i + 1] - '0');
            }
        }
        ll sum = accumulate(v.begin(), v.end(), 0LL);
        if(is_prime(sum)) ans++;
    }
    cout << ans << endl;
}
0