結果
問題 | No.2920 Blood Type |
ユーザー | sasa8uyauya |
提出日時 | 2024-10-12 14:36:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 54,372 KB |
最終ジャッジ日時 | 2024-10-12 14:36:23 |
合計ジャッジ時間 | 2,812 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 39 ms
51,968 KB |
testcase_05 | WA | - |
testcase_06 | AC | 40 ms
51,968 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
51,840 KB |
testcase_10 | WA | - |
testcase_11 | AC | 38 ms
52,352 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 41 ms
52,096 KB |
testcase_16 | WA | - |
testcase_17 | AC | 40 ms
52,480 KB |
testcase_18 | WA | - |
testcase_19 | AC | 40 ms
51,840 KB |
testcase_20 | AC | 39 ms
51,840 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 40 ms
51,712 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 39 ms
52,072 KB |
testcase_30 | WA | - |
testcase_31 | AC | 40 ms
51,968 KB |
testcase_32 | AC | 40 ms
51,968 KB |
testcase_33 | WA | - |
testcase_34 | AC | 40 ms
52,096 KB |
testcase_35 | WA | - |
ソースコード
s=input() t=input() pa=0 pb=0 pab=0 po=0 for i in range(2): for j in range(2): if s[i]+t[j] in ["AA","AO","OA"]: pa+=1 if s[i]+t[j] in ["BB","BO","OB"]: pb+=1 if s[i]+t[j] in ["AB","BA"]: pab+=1 po=4-pa-pb-pab pa=100//pa if pa>0 else 0 pb=100//pb if pb>0 else 0 pab=100//pab if pab>0 else 0 po=100//po if po>0 else 0 print(pa,pb,pab,po)