結果

問題 No.2920 Blood Type
ユーザー kusirakusira
提出日時 2024-06-14 18:11:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 53,672 KB
最終ジャッジ日時 2024-06-14 18:11:33
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()

def f(s,t):
    global a,b,ab,o
    if(("A" in s or "A" in t) and ("B" not in s and "B" not in t)):
        a += 25
    elif(("B" in s or "B" in t) and ("A" not in s and "A" not in t)):
        b += 25
    elif(("A" in s or "A" in T) and ("A" in s or "A" in t)):
        ab += 25
    else:
        o += 25
        
a = 0
b = 0
ab = 0
o = 0
f(S[0],T[0])
f(S[0],T[1])
f(S[1],T[0])
f(S[1],T[1])
print(a,b,ab,o)
0