結果

問題 No.2920 Blood Type
ユーザー ks2mks2m
提出日時 2024-10-14 15:23:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 80,844 KB
実行使用メモリ 42,728 KB
最終ジャッジ日時 2024-10-14 15:23:19
合計ジャッジ時間 9,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,608 KB
testcase_01 AC 167 ms
42,252 KB
testcase_02 AC 167 ms
42,452 KB
testcase_03 AC 168 ms
42,276 KB
testcase_04 AC 168 ms
42,384 KB
testcase_05 AC 166 ms
42,728 KB
testcase_06 AC 170 ms
42,396 KB
testcase_07 AC 168 ms
42,668 KB
testcase_08 AC 168 ms
42,272 KB
testcase_09 AC 168 ms
42,560 KB
testcase_10 AC 168 ms
42,304 KB
testcase_11 AC 168 ms
42,548 KB
testcase_12 AC 167 ms
42,464 KB
testcase_13 AC 155 ms
42,284 KB
testcase_14 AC 170 ms
42,344 KB
testcase_15 AC 167 ms
42,388 KB
testcase_16 AC 168 ms
42,460 KB
testcase_17 AC 172 ms
42,524 KB
testcase_18 AC 170 ms
42,284 KB
testcase_19 AC 169 ms
42,616 KB
testcase_20 AC 170 ms
42,560 KB
testcase_21 AC 167 ms
42,332 KB
testcase_22 AC 168 ms
42,416 KB
testcase_23 AC 167 ms
42,552 KB
testcase_24 AC 169 ms
42,588 KB
testcase_25 AC 168 ms
42,644 KB
testcase_26 AC 169 ms
42,652 KB
testcase_27 AC 167 ms
42,272 KB
testcase_28 AC 173 ms
42,416 KB
testcase_29 AC 168 ms
42,476 KB
testcase_30 AC 152 ms
42,264 KB
testcase_31 AC 168 ms
42,312 KB
testcase_32 AC 165 ms
42,304 KB
testcase_33 AC 165 ms
42,472 KB
testcase_34 AC 165 ms
42,408 KB
testcase_35 AC 166 ms
42,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		char[] t = sc.next().toCharArray();
		sc.close();

		int a = 0;
		int b = 0;
		int ab = 0;
		int o = 0;
		for (int i = 0; i < s.length; i++) {
			for (int j = 0; j < t.length; j++) {
				char[] c = new char[2];
				c[0] = s[i];
				c[1] = t[j];
				Arrays.sort(c);
				String st = String.valueOf(c);
				if (st.equals("AA")) a += 25;
				if (st.equals("AB")) ab += 25;
				if (st.equals("AO")) a += 25;
				if (st.equals("BB")) b += 25;
				if (st.equals("BO")) b += 25;
				if (st.equals("OO")) o += 25;
			}
		}
		System.out.println(a + " " + b + " " + ab + " " + o);
	}
}
0