結果

問題 No.2784 繰り上がりなし十進和
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-15 14:54:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 207,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-15 14:55:05
合計ジャッジ時間 10,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
6,812 KB
testcase_01 AC 158 ms
6,944 KB
testcase_02 AC 184 ms
6,944 KB
testcase_03 AC 158 ms
6,944 KB
testcase_04 AC 159 ms
6,944 KB
testcase_05 AC 158 ms
6,940 KB
testcase_06 AC 157 ms
6,940 KB
testcase_07 AC 157 ms
6,940 KB
testcase_08 AC 155 ms
6,940 KB
testcase_09 AC 184 ms
6,940 KB
testcase_10 AC 156 ms
6,940 KB
testcase_11 AC 156 ms
6,944 KB
testcase_12 AC 156 ms
6,944 KB
testcase_13 AC 159 ms
6,940 KB
testcase_14 AC 159 ms
6,940 KB
testcase_15 AC 156 ms
6,940 KB
testcase_16 AC 183 ms
6,940 KB
testcase_17 AC 158 ms
6,940 KB
testcase_18 AC 161 ms
6,940 KB
testcase_19 AC 157 ms
6,940 KB
testcase_20 AC 158 ms
6,944 KB
testcase_21 AC 153 ms
6,940 KB
testcase_22 AC 159 ms
6,940 KB
testcase_23 AC 173 ms
6,940 KB
testcase_24 AC 159 ms
6,940 KB
testcase_25 AC 159 ms
6,940 KB
testcase_26 AC 157 ms
6,940 KB
testcase_27 AC 156 ms
6,944 KB
testcase_28 AC 157 ms
6,940 KB
testcase_29 AC 161 ms
6,940 KB
testcase_30 AC 160 ms
6,944 KB
testcase_31 AC 160 ms
6,940 KB
testcase_32 AC 159 ms
6,940 KB
testcase_33 AC 156 ms
6,940 KB
testcase_34 AC 156 ms
6,944 KB
testcase_35 AC 159 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i) for (int i = 0; i < 10; i++)
using namespace std;

int main() {
    vector<string> s(6);
    for (int i = 0; i < 6; i++) {
        cin >> s[i];
    }
    vector<bool> can(1000000, false);
    rep(a) rep(b) rep(c) rep(d) rep(e) rep(f) {
        vector<int> v = {a, b, c, d, e, f};
        string res = "000000";
        for (int i = 0; i < 6; i++) {
            string t = s[i];
            for (int j = 0; j < 6; j++) {
                int x = ((res[j] - '0') + (t[j] - '0') * v[i]) % 10;
                res[j] = (char)(x + 48);
            }
        }
        can[stoi(res)] = true;
    }
    int ans = 0;
    for (int i = 0; i < 1000000; i++) {
        if (can[i]) {
            ans++;
        }
    }
    cout << ans << endl;
}
0