結果

問題 No.2920 Blood Type
ユーザー 電たくT電たくT
提出日時 2024-10-12 14:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 53,752 KB
最終ジャッジ日時 2024-10-12 14:42:20
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 39 ms
53,752 KB
testcase_02 AC 39 ms
52,216 KB
testcase_03 AC 38 ms
52,092 KB
testcase_04 AC 39 ms
52,696 KB
testcase_05 AC 38 ms
52,684 KB
testcase_06 AC 43 ms
52,368 KB
testcase_07 AC 39 ms
53,012 KB
testcase_08 AC 38 ms
52,412 KB
testcase_09 AC 40 ms
52,208 KB
testcase_10 AC 38 ms
52,072 KB
testcase_11 AC 38 ms
52,428 KB
testcase_12 AC 39 ms
52,568 KB
testcase_13 AC 39 ms
52,448 KB
testcase_14 AC 38 ms
52,648 KB
testcase_15 AC 38 ms
52,964 KB
testcase_16 AC 39 ms
52,668 KB
testcase_17 AC 38 ms
52,632 KB
testcase_18 AC 39 ms
52,956 KB
testcase_19 AC 39 ms
52,340 KB
testcase_20 AC 39 ms
52,092 KB
testcase_21 AC 39 ms
53,364 KB
testcase_22 AC 40 ms
52,748 KB
testcase_23 AC 40 ms
52,484 KB
testcase_24 AC 38 ms
52,608 KB
testcase_25 AC 38 ms
52,928 KB
testcase_26 AC 39 ms
53,436 KB
testcase_27 AC 39 ms
52,592 KB
testcase_28 AC 38 ms
52,212 KB
testcase_29 AC 38 ms
52,412 KB
testcase_30 AC 38 ms
52,808 KB
testcase_31 AC 40 ms
52,636 KB
testcase_32 AC 40 ms
52,004 KB
testcase_33 AC 39 ms
52,824 KB
testcase_34 AC 38 ms
52,412 KB
testcase_35 AC 39 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()
Ans = []
for a in range(2):
    for b in range(2):
        s,t = S[a],T[b]
        if s == "A":
            if t == "A":
                Ans.append("A")
            elif t == "B":
                Ans.append("AB")
            elif t == "O":
                Ans.append("A")
        elif s == "B":
            if t == "A":
                Ans.append("AB")
            elif t == "B":
                Ans.append("B")
            else:
                Ans.append("B")
        elif s == "O":
            if t == "A":
                Ans.append("A")
            elif t == "B":
                Ans.append("B")
            else:
                Ans.append("O")

i,j,k,l = Ans.count("A"),Ans.count("B"),Ans.count("AB"),Ans.count("O")
print(i*100//4,j*100//4,k*100//4,l*100//4)
0