結果

問題 No.2784 繰り上がりなし十進和
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-14 21:52:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,195 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 210,160 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-14 21:53:09
合計ジャッジ時間 23,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
6,812 KB
testcase_01 AC 181 ms
6,944 KB
testcase_02 AC 495 ms
81,664 KB
testcase_03 AC 138 ms
6,944 KB
testcase_04 AC 158 ms
6,940 KB
testcase_05 AC 165 ms
6,948 KB
testcase_06 AC 170 ms
6,940 KB
testcase_07 AC 175 ms
6,940 KB
testcase_08 AC 250 ms
6,940 KB
testcase_09 AC 197 ms
6,940 KB
testcase_10 AC 187 ms
6,944 KB
testcase_11 AC 220 ms
6,940 KB
testcase_12 AC 466 ms
81,536 KB
testcase_13 AC 520 ms
81,536 KB
testcase_14 AC 329 ms
22,912 KB
testcase_15 AC 275 ms
7,424 KB
testcase_16 AC 611 ms
11,136 KB
testcase_17 AC 988 ms
42,496 KB
testcase_18 AC 847 ms
42,496 KB
testcase_19 AC 519 ms
13,184 KB
testcase_20 AC 1,051 ms
81,536 KB
testcase_21 AC 475 ms
11,136 KB
testcase_22 AC 939 ms
81,664 KB
testcase_23 AC 408 ms
6,944 KB
testcase_24 AC 637 ms
18,944 KB
testcase_25 AC 898 ms
42,496 KB
testcase_26 AC 846 ms
81,664 KB
testcase_27 AC 1,077 ms
81,664 KB
testcase_28 AC 607 ms
23,040 KB
testcase_29 AC 1,195 ms
81,664 KB
testcase_30 AC 666 ms
23,040 KB
testcase_31 AC 468 ms
11,264 KB
testcase_32 AC 891 ms
42,368 KB
testcase_33 AC 802 ms
42,368 KB
testcase_34 AC 677 ms
19,072 KB
testcase_35 AC 447 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;
string cur = "000000";
void dfs(int sz = 0) {
    if (sz == 6) {
        st.insert(cur);
        return;
    }
    string tmp = "000000";
    for (int i = 0; i < 10; i++) {
        tmp = add(tmp, a[sz]);
        cur = add(cur, a[sz]);
        dfs(sz + 1);
    }
    cur = sub(cur, tmp);
}
int main() {
    fast_io();
    for (int i = 0; i < 6; i++) {
        cin >> a[i];
    }
    dfs(0);
    cout << st.size() << endl;
}
0