tzu220342232


私信TA

用户名:dotcpp0644624

访问量:187

签 名:

等  级
排  名 1134
经  验 3185
参赛次数 2
文章发表 9
年  龄 0
在职情况 学生
学  校 泰州学院
专  业

  自我简介:

#include <bits/stdc++.h>
#define debuga(v, i) cout << #v << "[" << i << "]" << " = " << v[i] << '\n';
#define debug(x) cout << #x << " = " << x << '\n';
#define PI 3.1415926
using namespace std;

const int N = 1010;

char s[10][7] = {
    {1, 1, 1, 0, 1, 1, 1},
    {0, 0, 1, 0, 0, 1, 0},
    {1, 0, 1, 1, 1, 0, 1},
    {1, 0, 1, 1, 0, 1, 1},
    {0, 1, 1, 1, 0, 1, 0},
    {1, 1, 0, 1, 0, 1, 1},
    {1, 1, 0, 1, 1, 1, 1},
    {1, 0, 1, 0, 0, 1, 0},
    {1, 1, 1, 1, 1, 1, 1},
    {1, 1, 1, 1, 0, 1, 1},
};

void solve() {
    int L;
    string a, b;
    cin >> L;
    cin >> a >> b;

    int res = 0;
    for (int i = 0; i < L; i ++ ) {
        for (int j = 0; j < 7; j ++ ) {
            if (s[a[i] - '0'][j] ^ s[b[i] - '0'][j]) {
                res ++;
            }
        }
    }
    cout << res << '\n';

}

int main() {    
    ios::sync_with_stdio(false);
    cin.tie(0);

    int T = 1;
    // cin >> T;
    while (T --) {
        solve();
    }

    return 0;
}
 

0.0分

0 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »