結果

問題 No.2920 Blood Type
ユーザー hatonobuhatonobu
提出日時 2024-10-14 10:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-10-14 10:15:41
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
66,944 KB
testcase_01 AC 66 ms
67,200 KB
testcase_02 AC 72 ms
67,200 KB
testcase_03 AC 67 ms
67,200 KB
testcase_04 AC 64 ms
67,072 KB
testcase_05 AC 67 ms
67,072 KB
testcase_06 AC 67 ms
67,328 KB
testcase_07 AC 66 ms
67,200 KB
testcase_08 AC 66 ms
67,072 KB
testcase_09 AC 67 ms
67,200 KB
testcase_10 AC 67 ms
67,200 KB
testcase_11 AC 70 ms
67,200 KB
testcase_12 AC 71 ms
67,328 KB
testcase_13 AC 67 ms
67,200 KB
testcase_14 AC 67 ms
67,040 KB
testcase_15 AC 74 ms
67,072 KB
testcase_16 AC 69 ms
67,200 KB
testcase_17 AC 67 ms
67,200 KB
testcase_18 AC 66 ms
67,072 KB
testcase_19 AC 65 ms
67,200 KB
testcase_20 AC 66 ms
67,200 KB
testcase_21 AC 66 ms
67,072 KB
testcase_22 AC 65 ms
67,072 KB
testcase_23 AC 65 ms
67,072 KB
testcase_24 AC 67 ms
67,200 KB
testcase_25 AC 65 ms
67,072 KB
testcase_26 AC 67 ms
67,328 KB
testcase_27 AC 65 ms
66,944 KB
testcase_28 AC 66 ms
67,072 KB
testcase_29 AC 65 ms
67,040 KB
testcase_30 AC 76 ms
67,072 KB
testcase_31 AC 66 ms
66,944 KB
testcase_32 AC 65 ms
67,200 KB
testcase_33 AC 67 ms
66,944 KB
testcase_34 AC 67 ms
66,944 KB
testcase_35 AC 65 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
#import pypyjit
import itertools
import heapq
import bisect
import queue

#pypyjit.set_param("max_unroll_recursion=-1")
#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353
INF = 8 * 10**18

S = input()
T = input()
P = [0,0,0,0]

for i in range(4):
  lis = [0,0,0]
  if S[i // 2] == "A":
    lis[0] += 1
  elif S[i // 2] == "B":
    lis[1] += 1
  else:
    lis[2] += 1
    
  if T[i % 2] == "A":
    lis[0] += 1
  elif T[i % 2] == "B":
    lis[1] += 1
  else:
    lis[2] += 1
  
  #judge
  if lis[0] >= 1 and lis[1] == 0:
    P[0] += 25
  elif lis[1] >= 1 and lis[0] == 0:
    P[1] += 25
  elif lis[0] == 1 and lis[1] == 1:
    P[2] += 25
  else:
    P[3] += 25

print(*P)
0