結果

問題 No.2920 Blood Type
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-12 14:36:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 57,868 KB
最終ジャッジ日時 2024-10-12 14:36:26
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,076 KB
testcase_01 AC 41 ms
56,844 KB
testcase_02 AC 42 ms
56,748 KB
testcase_03 AC 44 ms
56,472 KB
testcase_04 AC 41 ms
56,060 KB
testcase_05 AC 42 ms
56,864 KB
testcase_06 AC 41 ms
57,012 KB
testcase_07 AC 44 ms
56,672 KB
testcase_08 AC 44 ms
55,880 KB
testcase_09 AC 42 ms
57,868 KB
testcase_10 AC 43 ms
57,300 KB
testcase_11 AC 43 ms
56,608 KB
testcase_12 AC 43 ms
56,896 KB
testcase_13 AC 46 ms
56,348 KB
testcase_14 AC 41 ms
57,656 KB
testcase_15 AC 42 ms
56,468 KB
testcase_16 AC 42 ms
55,940 KB
testcase_17 AC 40 ms
56,056 KB
testcase_18 AC 40 ms
56,204 KB
testcase_19 AC 42 ms
56,276 KB
testcase_20 AC 43 ms
57,248 KB
testcase_21 AC 43 ms
56,616 KB
testcase_22 AC 43 ms
55,972 KB
testcase_23 AC 43 ms
57,608 KB
testcase_24 AC 41 ms
56,800 KB
testcase_25 AC 42 ms
57,052 KB
testcase_26 AC 42 ms
56,052 KB
testcase_27 AC 48 ms
57,104 KB
testcase_28 AC 42 ms
57,048 KB
testcase_29 AC 40 ms
56,792 KB
testcase_30 AC 43 ms
57,100 KB
testcase_31 AC 41 ms
57,008 KB
testcase_32 AC 45 ms
57,788 KB
testcase_33 AC 43 ms
56,236 KB
testcase_34 AC 41 ms
56,540 KB
testcase_35 AC 41 ms
57,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
# from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

def son(s, t):
    x = s+t
    if "A" in x and "B" in x:
        return 2
    elif "A" in x:
        return 0
    elif "B" in x:
        return 1
    return 3

S = input()
T = input()
P = [0, 0, 0, 0]
idx = {"A": 0, "B": 1}
for i in range(2):
    for j in range(2):
        P[son(S[i], T[j])] += 25
print(*P)
0