結果

問題 No.2920 Blood Type
ユーザー ikomaikoma
提出日時 2024-10-12 15:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-10-12 15:33:52
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,864 KB
testcase_01 AC 40 ms
52,528 KB
testcase_02 AC 34 ms
52,080 KB
testcase_03 AC 33 ms
52,212 KB
testcase_04 AC 34 ms
52,528 KB
testcase_05 AC 35 ms
52,484 KB
testcase_06 AC 34 ms
53,312 KB
testcase_07 AC 34 ms
53,728 KB
testcase_08 AC 33 ms
52,016 KB
testcase_09 AC 37 ms
52,704 KB
testcase_10 AC 34 ms
52,824 KB
testcase_11 AC 34 ms
53,140 KB
testcase_12 AC 34 ms
53,008 KB
testcase_13 AC 34 ms
52,588 KB
testcase_14 AC 35 ms
52,940 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 34 ms
52,672 KB
testcase_17 AC 34 ms
52,872 KB
testcase_18 AC 33 ms
53,352 KB
testcase_19 AC 33 ms
52,244 KB
testcase_20 AC 34 ms
53,868 KB
testcase_21 AC 36 ms
51,760 KB
testcase_22 AC 39 ms
52,868 KB
testcase_23 AC 39 ms
53,360 KB
testcase_24 AC 50 ms
52,204 KB
testcase_25 AC 41 ms
52,324 KB
testcase_26 AC 33 ms
52,744 KB
testcase_27 AC 33 ms
53,048 KB
testcase_28 AC 33 ms
53,312 KB
testcase_29 AC 35 ms
52,516 KB
testcase_30 AC 35 ms
53,424 KB
testcase_31 AC 34 ms
52,948 KB
testcase_32 AC 37 ms
53,568 KB
testcase_33 AC 35 ms
52,828 KB
testcase_34 AC 36 ms
53,388 KB
testcase_35 AC 36 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input().strip()
T=input().strip()

ans = [0]*4

for i in range(2):
    for j in range(2):
        s=S[i]
        t=T[j]
        st= s+t
        if st=="AB" or st=="BA":
            ans[2] += 25
        elif st=="OO":
            ans[3] += 25
        elif "A" in st:
            ans[0] += 25
        else:
            ans[1] += 25
print(*ans)
0