結果

問題 No.2920 Blood Type
ユーザー miho-4miho-4
提出日時 2024-10-12 14:42:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 53,788 KB
最終ジャッジ日時 2024-10-12 14:42:41
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,956 KB
testcase_01 AC 37 ms
52,560 KB
testcase_02 AC 37 ms
52,340 KB
testcase_03 AC 37 ms
51,992 KB
testcase_04 AC 38 ms
52,300 KB
testcase_05 AC 38 ms
52,940 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 37 ms
53,032 KB
testcase_08 AC 38 ms
52,500 KB
testcase_09 AC 37 ms
52,088 KB
testcase_10 AC 37 ms
52,004 KB
testcase_11 AC 37 ms
53,084 KB
testcase_12 AC 37 ms
52,496 KB
testcase_13 AC 36 ms
52,824 KB
testcase_14 AC 38 ms
53,016 KB
testcase_15 AC 37 ms
52,124 KB
testcase_16 AC 37 ms
52,684 KB
testcase_17 AC 38 ms
52,208 KB
testcase_18 AC 38 ms
53,364 KB
testcase_19 AC 38 ms
52,180 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 37 ms
52,336 KB
testcase_22 AC 38 ms
52,404 KB
testcase_23 AC 38 ms
53,276 KB
testcase_24 AC 37 ms
52,596 KB
testcase_25 AC 38 ms
53,788 KB
testcase_26 AC 37 ms
52,548 KB
testcase_27 AC 38 ms
51,824 KB
testcase_28 AC 38 ms
51,880 KB
testcase_29 AC 37 ms
51,944 KB
testcase_30 AC 37 ms
52,428 KB
testcase_31 AC 36 ms
52,432 KB
testcase_32 AC 37 ms
52,472 KB
testcase_33 AC 37 ms
52,072 KB
testcase_34 AC 37 ms
53,752 KB
testcase_35 AC 37 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=input()
ans=[0]*4
for e in s:
	for e2 in t:
		L=[e,e2]
		L.sort()
		if L==["O","O"]:
			ans[3]+=25
		elif L==["A","B"]:
			ans[2]+=25
		elif L==["A","A"] or L==["A","O"]:
			ans[0]+=25
		else:
			ans[1]+=25
print(*ans)
0