結果

問題 No.1747 Many Formulae 2
ユーザー rogi52rogi52
提出日時 2022-10-03 22:03:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 202,220 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-27 20:03:17
合計ジャッジ時間 3,677 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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