結果

問題 No.2920 Blood Type
ユーザー loop0919loop0919
提出日時 2024-09-04 21:05:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,604 KB
最終ジャッジ日時 2024-09-04 21:05:51
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
76,832 KB
testcase_01 AC 113 ms
77,104 KB
testcase_02 AC 97 ms
76,736 KB
testcase_03 AC 97 ms
77,248 KB
testcase_04 AC 119 ms
77,276 KB
testcase_05 AC 96 ms
76,724 KB
testcase_06 AC 109 ms
77,116 KB
testcase_07 AC 123 ms
77,272 KB
testcase_08 AC 123 ms
77,396 KB
testcase_09 AC 111 ms
77,188 KB
testcase_10 AC 120 ms
77,288 KB
testcase_11 AC 108 ms
77,404 KB
testcase_12 AC 94 ms
76,836 KB
testcase_13 AC 119 ms
77,272 KB
testcase_14 AC 109 ms
77,320 KB
testcase_15 AC 112 ms
77,336 KB
testcase_16 AC 133 ms
77,604 KB
testcase_17 AC 111 ms
77,348 KB
testcase_18 AC 95 ms
76,824 KB
testcase_19 AC 115 ms
77,244 KB
testcase_20 AC 117 ms
77,004 KB
testcase_21 AC 95 ms
76,768 KB
testcase_22 AC 94 ms
76,544 KB
testcase_23 AC 96 ms
76,868 KB
testcase_24 AC 114 ms
77,212 KB
testcase_25 AC 123 ms
77,204 KB
testcase_26 AC 135 ms
77,364 KB
testcase_27 AC 98 ms
76,956 KB
testcase_28 AC 107 ms
77,072 KB
testcase_29 AC 106 ms
77,232 KB
testcase_30 AC 94 ms
76,648 KB
testcase_31 AC 108 ms
77,136 KB
testcase_32 AC 109 ms
77,232 KB
testcase_33 AC 94 ms
76,812 KB
testcase_34 AC 111 ms
77,232 KB
testcase_35 AC 96 ms
77,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randint

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


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