結果

問題 No.2920 Blood Type
ユーザー miya145592miya145592
提出日時 2024-10-12 14:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 55,508 KB
最終ジャッジ日時 2024-10-12 14:37:05
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,744 KB
testcase_01 AC 38 ms
54,912 KB
testcase_02 AC 37 ms
53,868 KB
testcase_03 AC 40 ms
54,616 KB
testcase_04 AC 38 ms
55,084 KB
testcase_05 AC 38 ms
55,048 KB
testcase_06 AC 38 ms
54,960 KB
testcase_07 AC 38 ms
54,124 KB
testcase_08 AC 38 ms
54,108 KB
testcase_09 AC 42 ms
54,380 KB
testcase_10 AC 41 ms
53,664 KB
testcase_11 AC 39 ms
54,112 KB
testcase_12 AC 37 ms
53,872 KB
testcase_13 AC 37 ms
55,132 KB
testcase_14 AC 43 ms
53,776 KB
testcase_15 AC 37 ms
54,312 KB
testcase_16 AC 39 ms
54,308 KB
testcase_17 AC 43 ms
54,712 KB
testcase_18 AC 37 ms
53,856 KB
testcase_19 AC 38 ms
54,024 KB
testcase_20 AC 37 ms
54,544 KB
testcase_21 AC 38 ms
54,372 KB
testcase_22 AC 38 ms
55,044 KB
testcase_23 AC 37 ms
55,112 KB
testcase_24 AC 38 ms
54,800 KB
testcase_25 AC 37 ms
54,364 KB
testcase_26 AC 37 ms
54,600 KB
testcase_27 AC 37 ms
53,928 KB
testcase_28 AC 37 ms
54,328 KB
testcase_29 AC 37 ms
54,116 KB
testcase_30 AC 37 ms
54,920 KB
testcase_31 AC 38 ms
53,948 KB
testcase_32 AC 38 ms
53,936 KB
testcase_33 AC 37 ms
54,476 KB
testcase_34 AC 38 ms
55,508 KB
testcase_35 AC 38 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline
S = input().strip()
T = input().strip()
D = defaultdict(int)
for s in S:
    for t in T:
        tmp = {s, t}
        if "A" in tmp and "B" in tmp:
            if "AB" not in D:
                D["AB"] = 25
            else:
                D["AB"] += 25
        elif "A" in tmp:
            if "A" not in D:
                D["A"] = 25
            else:
                D["A"] += 25
        elif "B" in tmp:
            if "B" not in D:
                D["B"] = 25
            else:
                D["B"] += 25
        else:
            if "O" not in D:
                D["O"] = 25
            else:
                D["O"] += 25
print(D["A"], D["B"], D["AB"], D["O"])
0