結果

問題 No.2784 繰り上がりなし十進和
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-14 21:47:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,170 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 210,892 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-14 21:48:35
合計ジャッジ時間 58,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,163 ms
5,248 KB
testcase_01 AC 1,183 ms
5,248 KB
testcase_02 AC 1,531 ms
81,536 KB
testcase_03 AC 1,144 ms
5,376 KB
testcase_04 AC 1,182 ms
5,376 KB
testcase_05 AC 1,189 ms
5,376 KB
testcase_06 AC 1,164 ms
5,376 KB
testcase_07 AC 1,173 ms
5,376 KB
testcase_08 AC 1,246 ms
5,376 KB
testcase_09 AC 1,177 ms
5,376 KB
testcase_10 AC 1,181 ms
5,376 KB
testcase_11 AC 1,205 ms
5,376 KB
testcase_12 AC 1,434 ms
81,536 KB
testcase_13 AC 1,457 ms
81,536 KB
testcase_14 AC 1,332 ms
23,040 KB
testcase_15 AC 1,300 ms
7,296 KB
testcase_16 AC 1,510 ms
11,264 KB
testcase_17 AC 1,778 ms
42,496 KB
testcase_18 AC 1,732 ms
42,368 KB
testcase_19 AC 1,483 ms
13,184 KB
testcase_20 AC 1,929 ms
81,536 KB
testcase_21 AC 1,462 ms
11,136 KB
testcase_22 AC 1,873 ms
81,664 KB
testcase_23 AC 1,405 ms
6,656 KB
testcase_24 AC 1,545 ms
18,944 KB
testcase_25 AC 1,847 ms
42,496 KB
testcase_26 AC 1,812 ms
81,664 KB
testcase_27 TLE -
testcase_28 AC 1,684 ms
23,040 KB
testcase_29 TLE -
testcase_30 AC 1,633 ms
23,040 KB
testcase_31 AC 1,565 ms
11,264 KB
testcase_32 AC 1,862 ms
42,368 KB
testcase_33 AC 1,843 ms
42,496 KB
testcase_34 AC 1,632 ms
18,944 KB
testcase_35 AC 1,459 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}
string add(string a, string b) {
    string res = "";
    for (int i = 0; i < a.size(); i++) {
        int num = (a[i] - '0') + (b[i] - '0');
        num = (num + 10) % 10;
        res += num + '0';
    }
    return res;
}
string sub(string a, string b) {
    string res = "";
    for (int i = 0; i < a.size(); i++) {
        int num = (int)(a[i] - '0') - (b[i] - '0');
        num = (num + 10) % 10;
        res += num + '0';
    }
    return res;
}
string a[6];
set<string> st;
void dfs(vector<int> &cnt) {
    if (cnt.size() == 6) {
        string ans = "000000";
        vector<int> tmp = cnt;
        for (int i = 0; i < 6; i++) {
            while (tmp[i]--) {
                ans = add(ans, a[i]);
            }
        }
        st.insert(ans);
        return;
    }
    for (int i = 0; i < 10; i++) {
        cnt.push_back(i);
        dfs(cnt);
        cnt.pop_back();
    }
}
int main() {
    fast_io();
    for (int i = 0; i < 6; i++) {
        cin >> a[i];
    }
    vector<int> cnt;
    dfs(cnt);
    cout << st.size() << endl;
}
0