結果

問題 No.2784 繰り上がりなし十進和
ユーザー katonyonkokatonyonko
提出日時 2024-06-14 22:51:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 1,247 ms
コンパイル使用メモリ 118,632 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-06-14 22:52:11
合計ジャッジ時間 16,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
5,248 KB
testcase_01 AC 152 ms
5,376 KB
testcase_02 AC 424 ms
65,920 KB
testcase_03 AC 139 ms
5,376 KB
testcase_04 AC 131 ms
5,376 KB
testcase_05 AC 133 ms
5,376 KB
testcase_06 AC 128 ms
5,376 KB
testcase_07 AC 133 ms
5,376 KB
testcase_08 AC 197 ms
5,376 KB
testcase_09 AC 200 ms
5,376 KB
testcase_10 AC 236 ms
5,376 KB
testcase_11 AC 217 ms
5,376 KB
testcase_12 AC 430 ms
66,048 KB
testcase_13 AC 453 ms
65,920 KB
testcase_14 AC 271 ms
19,200 KB
testcase_15 AC 224 ms
6,784 KB
testcase_16 AC 347 ms
9,728 KB
testcase_17 AC 577 ms
34,688 KB
testcase_18 AC 471 ms
34,816 KB
testcase_19 AC 323 ms
11,264 KB
testcase_20 AC 836 ms
65,920 KB
testcase_21 AC 336 ms
9,728 KB
testcase_22 AC 678 ms
65,920 KB
testcase_23 AC 311 ms
6,016 KB
testcase_24 AC 419 ms
16,000 KB
testcase_25 AC 589 ms
34,816 KB
testcase_26 AC 583 ms
66,048 KB
testcase_27 AC 686 ms
65,920 KB
testcase_28 AC 471 ms
19,200 KB
testcase_29 AC 687 ms
65,920 KB
testcase_30 AC 429 ms
19,200 KB
testcase_31 AC 420 ms
9,728 KB
testcase_32 AC 504 ms
34,688 KB
testcase_33 AC 483 ms
34,688 KB
testcase_34 AC 428 ms
16,128 KB
testcase_35 AC 306 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <tuple>
#include <algorithm>

using namespace std;

vector<int> mapInputToInt(const string &input) {
    vector<int> result;
    for (char ch : input) {
        result.push_back(ch - '0');
    }
    return result;
}

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

    set<tuple<int, int, int, int, int, int>> ans;
    vector<int> p(6, 0);
    
    do {
        vector<int> sums(6, 0);
        for (int j = 0; j < 6; ++j) {
            for (int i = 0; i < 6; ++i) {
                sums[j] = (sums[j] + p[i] * A[i][j]) % 10;
            }
        }
        ans.emplace(sums[0], sums[1], sums[2], sums[3], sums[4], sums[5]);
        
        int idx = 0;
        while (idx < 6 && ++p[idx] == 10) {
            p[idx] = 0;
            ++idx;
        }
        if (idx == 6) break;
        
    } while (true);
    
    cout << ans.size() << endl;

    return 0;
}
0