結果

問題 No.2920 Blood Type
ユーザー CecilCecil
提出日時 2024-10-13 14:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-10-13 14:37:46
合計ジャッジ時間 2,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,872 KB
testcase_01 AC 33 ms
52,144 KB
testcase_02 AC 33 ms
52,468 KB
testcase_03 AC 36 ms
52,748 KB
testcase_04 AC 33 ms
52,508 KB
testcase_05 AC 34 ms
52,432 KB
testcase_06 AC 33 ms
54,092 KB
testcase_07 AC 38 ms
52,156 KB
testcase_08 AC 34 ms
53,160 KB
testcase_09 AC 34 ms
53,076 KB
testcase_10 AC 32 ms
53,084 KB
testcase_11 AC 32 ms
53,056 KB
testcase_12 AC 33 ms
52,916 KB
testcase_13 AC 34 ms
53,492 KB
testcase_14 AC 34 ms
53,252 KB
testcase_15 AC 34 ms
52,552 KB
testcase_16 AC 33 ms
53,312 KB
testcase_17 AC 33 ms
52,188 KB
testcase_18 AC 32 ms
52,560 KB
testcase_19 AC 34 ms
52,828 KB
testcase_20 AC 33 ms
52,756 KB
testcase_21 AC 36 ms
52,032 KB
testcase_22 AC 33 ms
53,720 KB
testcase_23 AC 34 ms
52,312 KB
testcase_24 AC 34 ms
53,048 KB
testcase_25 AC 33 ms
52,024 KB
testcase_26 AC 35 ms
52,616 KB
testcase_27 AC 33 ms
51,816 KB
testcase_28 AC 35 ms
52,176 KB
testcase_29 AC 33 ms
52,376 KB
testcase_30 AC 34 ms
52,312 KB
testcase_31 AC 33 ms
53,480 KB
testcase_32 AC 33 ms
52,348 KB
testcase_33 AC 33 ms
52,672 KB
testcase_34 AC 33 ms
53,484 KB
testcase_35 AC 33 ms
51,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
T = list(input())
P = [0 for _ in range(4)]
for s in S:
    for t in T:
        B = [s,t]
        if "A" in B and not "B" in B:
            P[0] += 1
        elif "B" in B and not "A" in B:
            P[1] += 1
        elif "A" in B and "B" in B:
            P[2] += 1
        else:
            P[3] += 1
per = 100//(sum(P))
for i in range(4):
    print(per*P[i], end=" ")
0