結果

問題 No.2920 Blood Type
ユーザー YuuuTYuuuT
提出日時 2024-10-12 15:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-10-12 15:40:21
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,784 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 46 ms
54,400 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 42 ms
54,144 KB
testcase_06 AC 39 ms
54,272 KB
testcase_07 AC 41 ms
54,272 KB
testcase_08 AC 40 ms
54,528 KB
testcase_09 AC 39 ms
54,400 KB
testcase_10 AC 39 ms
54,400 KB
testcase_11 AC 39 ms
54,272 KB
testcase_12 AC 43 ms
54,400 KB
testcase_13 AC 41 ms
54,272 KB
testcase_14 AC 41 ms
54,400 KB
testcase_15 AC 41 ms
54,528 KB
testcase_16 AC 39 ms
54,144 KB
testcase_17 AC 39 ms
54,400 KB
testcase_18 AC 40 ms
54,400 KB
testcase_19 AC 40 ms
54,656 KB
testcase_20 AC 48 ms
53,888 KB
testcase_21 AC 41 ms
54,656 KB
testcase_22 AC 41 ms
54,144 KB
testcase_23 AC 40 ms
54,272 KB
testcase_24 AC 41 ms
54,272 KB
testcase_25 AC 41 ms
54,272 KB
testcase_26 AC 42 ms
54,144 KB
testcase_27 AC 42 ms
54,656 KB
testcase_28 AC 41 ms
53,888 KB
testcase_29 AC 40 ms
54,016 KB
testcase_30 AC 41 ms
53,888 KB
testcase_31 AC 40 ms
54,016 KB
testcase_32 AC 41 ms
54,656 KB
testcase_33 AC 40 ms
54,272 KB
testcase_34 AC 43 ms
54,144 KB
testcase_35 AC 39 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
S = input()
T = input()
ans = [0]*4
for s in S:
    for t in T:
        if "A" in [s,t] and "B" not in [s,t]:
            ans[0] += 1
        if "A" not in [s,t] and "B" in [s,t]:
            ans[1] += 1
        if "A" in [s,t] and "B" in [s,t]:
            ans[2] += 1
        if "A" not in [s,t] and "B" not in [s,t]:
            ans[3] += 1

for a in ans:
    print(a*100//4,end=" ")
print()
0