結果

問題 No.2920 Blood Type
ユーザー manuomanuo
提出日時 2024-10-12 14:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 57,564 KB
最終ジャッジ日時 2024-10-12 14:36:08
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,940 KB
testcase_01 AC 44 ms
56,100 KB
testcase_02 AC 56 ms
56,908 KB
testcase_03 AC 46 ms
56,124 KB
testcase_04 AC 44 ms
57,564 KB
testcase_05 AC 43 ms
56,380 KB
testcase_06 AC 42 ms
56,048 KB
testcase_07 AC 42 ms
56,420 KB
testcase_08 AC 44 ms
56,644 KB
testcase_09 AC 42 ms
57,308 KB
testcase_10 AC 42 ms
57,384 KB
testcase_11 AC 44 ms
56,492 KB
testcase_12 AC 42 ms
56,084 KB
testcase_13 AC 42 ms
56,280 KB
testcase_14 AC 44 ms
56,564 KB
testcase_15 AC 44 ms
56,848 KB
testcase_16 AC 49 ms
56,348 KB
testcase_17 AC 43 ms
55,984 KB
testcase_18 AC 43 ms
56,840 KB
testcase_19 AC 44 ms
56,912 KB
testcase_20 AC 43 ms
57,392 KB
testcase_21 AC 44 ms
57,392 KB
testcase_22 AC 43 ms
57,132 KB
testcase_23 AC 42 ms
56,232 KB
testcase_24 AC 43 ms
55,824 KB
testcase_25 AC 49 ms
56,256 KB
testcase_26 AC 40 ms
56,796 KB
testcase_27 AC 41 ms
56,564 KB
testcase_28 AC 42 ms
55,564 KB
testcase_29 AC 42 ms
56,508 KB
testcase_30 AC 43 ms
56,748 KB
testcase_31 AC 41 ms
57,140 KB
testcase_32 AC 41 ms
56,116 KB
testcase_33 AC 42 ms
55,956 KB
testcase_34 AC 47 ms
55,996 KB
testcase_35 AC 44 ms
57,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cmp_to_key, cache
from heapq import heappop, heappush
import math, sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**7)
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<62
Yes, No = "Yes", "No"

S = input()
T = input()

a, b, ab, o = 0, 0, 0, 0
for i in range(2):
    for j in range(2):
        st = {S[i], T[j]}
        if "A" in st and "B" in st:
            ab += 25
        elif "A" in st:
            a += 25
        elif "B" in st:
            b += 25
        else:
            o += 25
print(a, b, ab, o)
0