結果

問題 No.2920 Blood Type
ユーザー nouka28nouka28
提出日時 2024-09-07 11:35:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,532 KB
最終ジャッジ日時 2024-09-07 11:35:12
合計ジャッジ時間 3,180 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,020 KB
testcase_01 AC 37 ms
52,516 KB
testcase_02 AC 37 ms
52,828 KB
testcase_03 AC 36 ms
52,068 KB
testcase_04 AC 37 ms
52,624 KB
testcase_05 AC 37 ms
52,612 KB
testcase_06 AC 37 ms
52,776 KB
testcase_07 AC 39 ms
52,464 KB
testcase_08 AC 37 ms
52,356 KB
testcase_09 AC 38 ms
52,616 KB
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 37 ms
52,624 KB
testcase_12 AC 37 ms
53,288 KB
testcase_13 AC 37 ms
52,248 KB
testcase_14 AC 37 ms
52,032 KB
testcase_15 AC 37 ms
52,728 KB
testcase_16 AC 37 ms
52,284 KB
testcase_17 AC 39 ms
52,092 KB
testcase_18 AC 38 ms
52,252 KB
testcase_19 AC 37 ms
52,460 KB
testcase_20 AC 38 ms
53,500 KB
testcase_21 AC 37 ms
52,876 KB
testcase_22 AC 38 ms
52,876 KB
testcase_23 AC 37 ms
53,356 KB
testcase_24 AC 38 ms
52,804 KB
testcase_25 AC 38 ms
53,196 KB
testcase_26 AC 38 ms
51,880 KB
testcase_27 AC 38 ms
52,020 KB
testcase_28 AC 38 ms
52,532 KB
testcase_29 AC 38 ms
52,904 KB
testcase_30 AC 37 ms
53,140 KB
testcase_31 AC 37 ms
52,688 KB
testcase_32 AC 36 ms
52,032 KB
testcase_33 AC 38 ms
53,532 KB
testcase_34 AC 38 ms
52,480 KB
testcase_35 AC 38 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
t=input()

x=[0]*4

for i in s:
    for j in t:
        st=set([i,j])
        if "A"in st and "B"not in st:x[0]+=1
        elif "B"in st and "A"not in st:x[1]+=1
        elif "A"in st and "B"in st:x[2]+=1
        else:x[3]+=1
t=sum(x)

for i in range(4):
    x[i]=100*x[i]//t

print(*x)
0