結果

問題 No.2920 Blood Type
ユーザー w0t0w0t0
提出日時 2024-10-12 14:49:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 3,528 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 207,700 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 14:49:54
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
//using mint = modint998244353;
using namespace std;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
using ll= long long;
using ull=unsigned long long;
using ldo =long double;

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
#define all(...) std::begin(__VA_ARGS__), std::end(__VA_ARGS__)
#define rall(...) std::rbegin(__VA_ARGS__), std::rend(__VA_ARGS__)
const ll INF = 1e18;


#define OVERLOAD_sum(_1, _2, _3,_4, name, ...) name
template<typename T>ll sum1(T &a){ll ans = 0;for(ll i=0;i<a.size();i++)ans+=a[i];return ans;}
template<typename T>ll sum2(T &a,ll start){ll ans = 0;for(ll i=start;i<a.size();i++)ans+=a[i];return ans;}
template<typename T>ll sum3(T &a,ll start,ll en){ll ans = 0;for(ll i=start;i<en;i++)ans+=a[i];return ans;}
template<typename T>ll sum4(T &a,ll start,ll en,ll tolerance){ll ans = 0;for(ll i=start;i<en;i+=tolerance)ans+=a[i];return ans;}
#define sum(...) OVERLOAD_sum(__VA_ARGS__,sum4, sum3, sum2, sum1)(__VA_ARGS__)

#define OVERLOAD_rep(_1, _2, _3,_4, name, ...) name
#define rep1(i,n) for(ll i = 0; i < (ll)(n); i++)
#define rep2(i,n,k) for(ll i = k; i < (ll)(n); i++)
#define rep3(i,n,k,tolerance) for(ll i = k; i < (ll)(n); i+=tolerance)
#define rep(...) OVERLOAD_rep(__VA_ARGS__, rep3, rep2, rep1)(__VA_ARGS__)

void print(){ putchar('\n'); }
void print(bool a){ printf("%d", a); }
void print(int a){ printf("%d", a); }
void print(unsigned a){ printf("%u", a); }
void print(long long a){ printf("%lld", a); }
void print(unsigned long long a){ printf("%llu", a); }
void print(char a){ printf("%c", a); }
void print(char a[]){ printf("%s", a); }
void print(float a){ printf("%.15f", a); }
void print(double a){ printf("%.15f", a); }
void print(long double a){ printf("%.15Lf", a); }
void print(const string& a){ rep(i,a.size()) print(a[i]); }
void print(vector<ll>& a){rep(i,a.size(),0){print(a[i]);if(i!=a.size()-1)print(' ');else print();}}
void print(vector<string>& a){rep(i,a.size(),0){print(a[i]);if(i!=a.size()-1)print(' ');else print();}}

void println(){ putchar('\n'); }
void println(bool a){ printf("%d\n", a); }
void println(int a){ printf("%d\n", a); }
void println(unsigned a){ printf("%u\n", a); }
void println(long long a){ printf("%lld\n", a); }
void println(unsigned long long a){ printf("%llu\n", a); }
void println(char a){ printf("%c\n", a); }
void println(char a[]){ printf("%s\n", a); }
void println(float a){ printf("%.15f\n", a); }
void println(double a){ printf("%.15f\n", a); }
void println(long double a){ printf("%.15Lf\n", a); }
void println(const string& a){ rep(i,a.size()) print(a[i]); print();}
void println(vector<ll>& a){rep(i,a.size(),0){print(a[i]);print();}}
void println(vector<string>& a){rep(i,a.size(),0){print(a[i]);print();}}

int main() {
    string S,T;
    vector<ll> result(4,0);
    vector<char> ans(2);
    cin>>S>>T;
    rep(i,2){
        rep(j,2){
            ans[0]=S[i];
            ans[1]=T[j];
            sort(all(ans));
            if(ans[0]=='A' && ans[1]!='B'){
                result[0]++;
            }else if(ans[0]=='B' && ans[1]!='A'){
                result[1]++;
            }else if(ans[0]!='O' && ans[1]!='O'){
                result[2]++;
            }else{
                result[3]++;
            }
        }
    }
    rep(i,4){
        print((result[i])*25);
        print(' ');
    }
    print();
}
0