結果

問題 No.2784 繰り上がりなし十進和
ユーザー Today03Today03
提出日時 2024-06-14 22:29:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,448 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 2,736 ms
コンパイル使用メモリ 212,652 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-06-14 22:30:11
合計ジャッジ時間 20,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,816 KB
testcase_01 AC 50 ms
6,940 KB
testcase_02 AC 647 ms
50,560 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 34 ms
6,940 KB
testcase_06 AC 36 ms
6,940 KB
testcase_07 AC 37 ms
6,940 KB
testcase_08 AC 77 ms
6,940 KB
testcase_09 AC 36 ms
6,940 KB
testcase_10 AC 38 ms
6,940 KB
testcase_11 AC 71 ms
6,940 KB
testcase_12 AC 661 ms
50,432 KB
testcase_13 AC 586 ms
50,432 KB
testcase_14 AC 263 ms
15,360 KB
testcase_15 AC 107 ms
6,940 KB
testcase_16 AC 227 ms
8,064 KB
testcase_17 AC 679 ms
26,880 KB
testcase_18 AC 598 ms
26,752 KB
testcase_19 AC 195 ms
9,216 KB
testcase_20 AC 1,368 ms
50,304 KB
testcase_21 AC 193 ms
8,064 KB
testcase_22 AC 1,448 ms
50,176 KB
testcase_23 AC 141 ms
6,940 KB
testcase_24 AC 469 ms
12,756 KB
testcase_25 AC 607 ms
26,880 KB
testcase_26 AC 1,160 ms
50,176 KB
testcase_27 AC 1,290 ms
50,560 KB
testcase_28 AC 339 ms
15,232 KB
testcase_29 AC 1,438 ms
50,304 KB
testcase_30 AC 332 ms
15,104 KB
testcase_31 AC 233 ms
8,320 KB
testcase_32 AC 749 ms
26,752 KB
testcase_33 AC 535 ms
26,752 KB
testcase_34 AC 518 ms
12,672 KB
testcase_35 AC 146 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int f(int X, int Y) {
    int ret = 0, ten = 1;
    for (int i = 0; i < 6; i++) {
        int x = X % 10, y = Y % 10;
        ret += ten * ((x + y) % 10);
        X /= 10;
        Y /= 10;
        ten *= 10;
    }

    return ret;
}

int main() {
    int N = 6;
    vector<string> S(N);
    for (int i = 0; i < N; i++) {
        cin >> S[i];
    }

    const int MX = 1e6;

    vector<bool> dp(MX, false);
    for (int i = 0; i < N; i++) {
        dp[stoi(S[i])] = true;
    }

    for (int i = 0; i < N; i++) {
        set<int> st;
        for (int j = 0; j < MX; j++) {
            if (dp[j]) {
                st.insert(j);
            }
        }
        int x = stoi(S[i]);
        if (x == 0) {
            continue;
        }

        for (int j = 0; j < MX; j++) {
            if (st.count(j)) {
                int now = j;
                while (!st.count(f(now, x))) {
                    now = f(now, x);
                    st.insert(now);
                }
            }
        }

        for (int x : st) {
            dp[x] = true;
        }
    }

    int ans = 0;
    for (int i = 0; i < MX; i++) {
        if (dp[i]) {
            ans++;
        }
    }

    cout << ans << endl;
}
0