結果

問題 No.2920 Blood Type
ユーザー rlangevinrlangevin
提出日時 2024-11-03 22:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-11-03 22:20:17
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,692 KB
testcase_01 AC 37 ms
52,884 KB
testcase_02 AC 37 ms
53,416 KB
testcase_03 AC 37 ms
52,216 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 AC 37 ms
52,404 KB
testcase_06 AC 37 ms
52,620 KB
testcase_07 AC 37 ms
51,932 KB
testcase_08 AC 37 ms
53,072 KB
testcase_09 AC 38 ms
52,540 KB
testcase_10 AC 38 ms
52,244 KB
testcase_11 AC 37 ms
52,124 KB
testcase_12 AC 37 ms
53,680 KB
testcase_13 AC 37 ms
53,376 KB
testcase_14 AC 37 ms
53,028 KB
testcase_15 AC 37 ms
52,112 KB
testcase_16 AC 37 ms
52,116 KB
testcase_17 AC 38 ms
52,948 KB
testcase_18 AC 38 ms
53,700 KB
testcase_19 AC 38 ms
52,824 KB
testcase_20 AC 37 ms
53,216 KB
testcase_21 AC 36 ms
52,952 KB
testcase_22 AC 38 ms
53,140 KB
testcase_23 AC 37 ms
52,200 KB
testcase_24 AC 37 ms
52,276 KB
testcase_25 AC 36 ms
52,076 KB
testcase_26 AC 37 ms
53,012 KB
testcase_27 AC 37 ms
52,752 KB
testcase_28 AC 38 ms
52,616 KB
testcase_29 AC 37 ms
52,556 KB
testcase_30 AC 37 ms
51,948 KB
testcase_31 AC 37 ms
52,316 KB
testcase_32 AC 38 ms
52,320 KB
testcase_33 AC 37 ms
52,832 KB
testcase_34 AC 37 ms
53,072 KB
testcase_35 AC 38 ms
54,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()
ans = [0] * 4
for s in S:
	for t in T:
		D = [s, t]
		if "A" in D and "B" not in D:
			ans[0] += 25
		elif "B" in D and "A" not in D:
			ans[1] += 25
		elif "A" in D and "B" in D:
			ans[2] += 25
		else:
			ans[3] += 25
			
print(*ans)
0