結果

問題 No.2920 Blood Type
ユーザー tentententen
提出日時 2024-10-21 09:48:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,738 bytes
コンパイル時間 5,671 ms
コンパイル使用メモリ 91,112 KB
実行使用メモリ 51,448 KB
最終ジャッジ日時 2024-10-21 09:48:37
合計ジャッジ時間 7,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
51,232 KB
testcase_01 AC 69 ms
51,192 KB
testcase_02 AC 71 ms
51,340 KB
testcase_03 AC 70 ms
51,044 KB
testcase_04 AC 70 ms
51,204 KB
testcase_05 AC 72 ms
51,164 KB
testcase_06 AC 70 ms
51,084 KB
testcase_07 AC 70 ms
51,236 KB
testcase_08 AC 70 ms
50,908 KB
testcase_09 AC 70 ms
51,348 KB
testcase_10 AC 76 ms
50,916 KB
testcase_11 AC 73 ms
51,204 KB
testcase_12 AC 71 ms
50,868 KB
testcase_13 AC 69 ms
51,224 KB
testcase_14 AC 70 ms
51,020 KB
testcase_15 AC 69 ms
51,124 KB
testcase_16 AC 70 ms
51,164 KB
testcase_17 AC 71 ms
51,236 KB
testcase_18 AC 71 ms
51,308 KB
testcase_19 AC 71 ms
51,136 KB
testcase_20 AC 73 ms
51,244 KB
testcase_21 AC 70 ms
50,844 KB
testcase_22 AC 69 ms
51,128 KB
testcase_23 AC 70 ms
51,156 KB
testcase_24 AC 70 ms
51,140 KB
testcase_25 AC 69 ms
50,940 KB
testcase_26 AC 72 ms
51,104 KB
testcase_27 AC 74 ms
51,100 KB
testcase_28 AC 69 ms
51,156 KB
testcase_29 AC 71 ms
51,240 KB
testcase_30 AC 71 ms
50,844 KB
testcase_31 AC 72 ms
50,752 KB
testcase_32 AC 71 ms
51,144 KB
testcase_33 AC 70 ms
50,792 KB
testcase_34 AC 70 ms
51,064 KB
testcase_35 AC 75 ms
51,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] s = sc.next().toCharArray();
        char[] t = sc.next().toCharArray();
        int[] ans = new int[4];
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                if (s[i] == 'O' && t[j] == 'O') {
                    ans[3] += 25;
                } else if ((s[i] == 'A' && t[j] == 'B') || (s[i] == 'B' && t[j] == 'A')) {
                    ans[2] += 25;
                } else if (s[i] == 'A' || t[j] == 'A') {
                    ans[0] += 25;
                } else {
                    ans[1] += 25;
                }
            }
        }
        System.out.println(Arrays.stream(ans).mapToObj(String::valueOf).collect(Collectors.joining(" ")));
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0