結果

問題 No.2920 Blood Type
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-12 14:40:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-10-12 14:40:33
合計ジャッジ時間 2,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S = input()
T = input()


a, b, ab, o = 0, 0, 0, 0
for i in range(2):
    for j in range(2):
        print(S[i], T[j])
        x, y = min(S[i], T[j]),max(S[i], T[j]) 
        if x == 'A':
            if y == 'B':
                ab += 1
            else:
                a += 1
        
        elif x == 'B':
            b += 1

        else:
            o += 1

ans1 = int((a/4) * 100)
ans2 = int((b/4) * 100)
ans3 = int((ab/4) * 100)
ans4 = int((o/4) * 100)
print(ans1, ans2, ans3, ans4)
0