結果

問題 No.2920 Blood Type
ユーザー viral8viral8
提出日時 2024-10-14 22:05:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 42,244 KB
最終ジャッジ日時 2024-10-14 22:05:28
合計ジャッジ時間 8,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,628 KB
testcase_01 AC 156 ms
41,324 KB
testcase_02 AC 145 ms
42,112 KB
testcase_03 AC 137 ms
42,184 KB
testcase_04 AC 134 ms
41,832 KB
testcase_05 AC 146 ms
42,008 KB
testcase_06 AC 137 ms
41,568 KB
testcase_07 AC 147 ms
41,920 KB
testcase_08 AC 129 ms
41,796 KB
testcase_09 AC 127 ms
40,384 KB
testcase_10 AC 139 ms
41,988 KB
testcase_11 AC 143 ms
42,108 KB
testcase_12 AC 140 ms
41,884 KB
testcase_13 AC 139 ms
41,916 KB
testcase_14 AC 133 ms
41,112 KB
testcase_15 AC 142 ms
42,012 KB
testcase_16 AC 143 ms
42,104 KB
testcase_17 AC 161 ms
41,764 KB
testcase_18 AC 149 ms
42,244 KB
testcase_19 AC 141 ms
42,056 KB
testcase_20 AC 145 ms
42,084 KB
testcase_21 AC 135 ms
41,904 KB
testcase_22 AC 155 ms
41,952 KB
testcase_23 AC 137 ms
42,140 KB
testcase_24 AC 160 ms
41,772 KB
testcase_25 AC 144 ms
42,040 KB
testcase_26 AC 147 ms
42,020 KB
testcase_27 AC 141 ms
41,680 KB
testcase_28 AC 135 ms
41,440 KB
testcase_29 AC 147 ms
42,044 KB
testcase_30 AC 137 ms
41,932 KB
testcase_31 AC 131 ms
41,708 KB
testcase_32 AC 156 ms
41,888 KB
testcase_33 AC 139 ms
41,444 KB
testcase_34 AC 144 ms
41,788 KB
testcase_35 AC 143 ms
41,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.HashMap;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		char[] S = sc.next().toCharArray();
		char[] T = sc.next().toCharArray();
		int[] ans = new int[4];
		HashMap<String,Integer> map = new HashMap<>(){{
			put("AA",0);
			put("AO",0);
			put("OA",0);
			put("BB",1);
			put("BO",1);
			put("OB",1);
			put("AB",2);
			put("BA",2);
			put("OO",3);
		}};
		for(char s:S)
			for(char t:T)
				ans[map.get(s+""+t)] += 25;
		System.out.printf("%d %d %d %d\n",ans[0],ans[1],ans[2],ans[3]);
	}
}
0