結果

問題 No.2920 Blood Type
ユーザー bluemeganebluemegane
提出日時 2024-10-12 19:20:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 17,585 ms
コンパイル使用メモリ 166,772 KB
実行使用メモリ 184,108 KB
最終ジャッジ日時 2024-10-12 19:20:51
合計ジャッジ時間 20,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
28,032 KB
testcase_01 AC 51 ms
27,636 KB
testcase_02 AC 52 ms
28,032 KB
testcase_03 AC 51 ms
27,776 KB
testcase_04 AC 52 ms
27,776 KB
testcase_05 AC 51 ms
27,904 KB
testcase_06 AC 52 ms
28,032 KB
testcase_07 AC 51 ms
28,032 KB
testcase_08 AC 51 ms
28,032 KB
testcase_09 AC 51 ms
28,032 KB
testcase_10 AC 51 ms
28,032 KB
testcase_11 AC 52 ms
28,032 KB
testcase_12 AC 77 ms
27,744 KB
testcase_13 AC 51 ms
28,160 KB
testcase_14 AC 53 ms
28,032 KB
testcase_15 AC 51 ms
28,032 KB
testcase_16 AC 53 ms
29,704 KB
testcase_17 AC 51 ms
28,032 KB
testcase_18 AC 52 ms
28,160 KB
testcase_19 AC 51 ms
27,776 KB
testcase_20 AC 52 ms
27,904 KB
testcase_21 AC 51 ms
27,760 KB
testcase_22 AC 52 ms
27,616 KB
testcase_23 AC 51 ms
27,648 KB
testcase_24 AC 50 ms
27,636 KB
testcase_25 AC 52 ms
28,032 KB
testcase_26 AC 50 ms
28,032 KB
testcase_27 AC 51 ms
27,904 KB
testcase_28 AC 50 ms
28,032 KB
testcase_29 AC 53 ms
28,032 KB
testcase_30 AC 54 ms
28,032 KB
testcase_31 AC 51 ms
27,648 KB
testcase_32 AC 51 ms
27,776 KB
testcase_33 AC 52 ms
28,032 KB
testcase_34 AC 51 ms
28,032 KB
testcase_35 AC 52 ms
184,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (114 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var t = Console.ReadLine().Trim();
        getAns(s, t);
    }
    static int[] check(string s)
    {
        var res = new int[2];
        for (int i = 0; i < 2; i++) res[i] = s[i] - 'A';
        return res;
    }
    static int check2(int x, int y)
    {
        if (x == 0)
        {
            if (y == 1) return 2;
            else return 0;
        }
        else if (x == 1)
        {
            if (y == 0) return 2;
            else return 1;
        }
        else
        {
            if (y == 0) return 0;
            else if (y == 1) return 1;
            else return 3;
        }
    }
    static void getAns(string s, string t)
    {
        var p1 = check(s);
        var p2 = check(t);
        var aa = new int[4];
        for (int i = 0; i < 2; i++)
        {
            for (int j = 0; j < 2; j++)
            {
                aa[check2(p1[i], p2[j])] += 25;
            }
        }
        Console.WriteLine(string.Join(" ", aa));
    }
}
0