結果

問題 No.2920 Blood Type
ユーザー loop0919loop0919
提出日時 2024-09-04 20:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-09-04 20:51:53
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
76,824 KB
testcase_01 AC 118 ms
77,252 KB
testcase_02 AC 110 ms
76,544 KB
testcase_03 AC 136 ms
76,812 KB
testcase_04 AC 119 ms
77,280 KB
testcase_05 AC 100 ms
76,744 KB
testcase_06 AC 120 ms
77,104 KB
testcase_07 AC 130 ms
77,080 KB
testcase_08 AC 126 ms
77,064 KB
testcase_09 AC 122 ms
76,928 KB
testcase_10 AC 129 ms
77,168 KB
testcase_11 AC 118 ms
77,060 KB
testcase_12 AC 111 ms
76,680 KB
testcase_13 AC 139 ms
77,036 KB
testcase_14 AC 117 ms
77,000 KB
testcase_15 AC 121 ms
76,996 KB
testcase_16 AC 145 ms
77,048 KB
testcase_17 AC 121 ms
77,152 KB
testcase_18 AC 106 ms
76,928 KB
testcase_19 AC 125 ms
76,928 KB
testcase_20 AC 130 ms
77,228 KB
testcase_21 AC 103 ms
76,672 KB
testcase_22 AC 103 ms
76,576 KB
testcase_23 AC 107 ms
76,744 KB
testcase_24 AC 121 ms
77,172 KB
testcase_25 AC 133 ms
77,164 KB
testcase_26 AC 145 ms
77,292 KB
testcase_27 AC 104 ms
76,636 KB
testcase_28 AC 118 ms
77,024 KB
testcase_29 AC 116 ms
77,088 KB
testcase_30 AC 108 ms
76,768 KB
testcase_31 AC 120 ms
76,820 KB
testcase_32 AC 118 ms
77,152 KB
testcase_33 AC 102 ms
77,080 KB
testcase_34 AC 117 ms
77,212 KB
testcase_35 AC 112 ms
76,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randint

N = 10**5  # モンテカルロ法の試行回数


def blood_type(s, t):
    child = [s, t]

    if child.count("A") >= 1 and child.count("B") == 0:
        return 0  # A型の場合

    elif child.count("A") == 0 and child.count("B") >= 1:
        return 1  # B型の場合

    elif child.count("A") >= 1 and child.count("B") >= 1:
        return 2  # AB型の場合

    else:
        return 3  # O型の場合


S = input()
T = input()

C = [0, 0, 0, 0]

for _ in range(N):
    s = S[randint(0, 1)]
    t = T[randint(0, 1)]

    C[blood_type(s, t)] += 1

answers = [0, 0, 0, 0]

for i in range(4):
    answers[i] = round(100 * C[i] / N)

print(*answers)
0