結果

問題 No.2920 Blood Type
ユーザー kusirakusirakusirakusira
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,148 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 38 ms
53,224 KB
testcase_03 AC 37 ms
52,052 KB
testcase_04 AC 35 ms
53,224 KB
testcase_05 AC 33 ms
52,980 KB
testcase_06 AC 36 ms
51,932 KB
testcase_07 AC 35 ms
52,964 KB
testcase_08 AC 38 ms
53,496 KB
testcase_09 AC 35 ms
52,700 KB
testcase_10 AC 35 ms
53,028 KB
testcase_11 AC 35 ms
52,696 KB
testcase_12 AC 37 ms
53,616 KB
testcase_13 AC 38 ms
53,352 KB
testcase_14 AC 38 ms
52,808 KB
testcase_15 AC 36 ms
53,580 KB
testcase_16 AC 36 ms
53,016 KB
testcase_17 AC 36 ms
52,484 KB
testcase_18 AC 36 ms
52,692 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 38 ms
53,672 KB
testcase_21 AC 35 ms
52,096 KB
testcase_22 AC 36 ms
52,344 KB
testcase_23 AC 34 ms
53,216 KB
testcase_24 AC 34 ms
52,900 KB
testcase_25 AC 36 ms
51,868 KB
testcase_26 AC 35 ms
52,304 KB
testcase_27 AC 35 ms
51,816 KB
testcase_28 AC 35 ms
52,672 KB
testcase_29 AC 33 ms
52,736 KB
testcase_30 AC 35 ms
52,540 KB
testcase_31 AC 34 ms
52,828 KB
testcase_32 AC 38 ms
52,816 KB
testcase_33 AC 38 ms
52,608 KB
testcase_34 AC 37 ms
53,520 KB
testcase_35 AC 38 ms
52,052 KB
権限があれば一括ダウンロードができます

ソースコード

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