結果

問題 No.2920 Blood Type
コンテスト
ユーザー yamasaKit_
提出日時 2025-01-31 23:03:09
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 949 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 568 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 19,792 KB
最終ジャッジ日時 2026-06-27 06:25:06
合計ジャッジ時間 7,082 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import *
from itertools import *
from functools import cache, partial
from pprint import pprint
import sys
from typing import Any, Final

try:
    from icecream import ic
except ImportError:  # Graceful fallback if IceCream isn't installed.
    ic = lambda *a: None if not a else (a[0] if len(a) == 1 else a)  # noqa
debug = partial(print, file=sys.stderr)
dpprint = partial(pprint, stream=sys.stderr)
sys.setrecursionlimit(10**6)
MOD = 998244353

S = input()
T = input()


counts = defaultdict(int)

for s in S:
    for t in T:
        ic(s, t)
        blood_type = "".join(sorted([s, t]))
        ic(blood_type)
        if blood_type == "AB":
            counts["AB"] += 1
        elif "A" in blood_type:
            counts["A"] += 1
        elif "B" in blood_type:
            counts["B"] += 1
        else:
            counts["O"] += 1

ic(counts)

print(counts["A"] * 25, counts["B"] * 25, counts["AB"] * 25, counts["O"] * 25)
0