結果

問題 No.601 Midpoint Erase
ユーザー NoNo
提出日時 2018-04-28 13:51:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-06-27 23:17:32
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 24 ms
17,664 KB
testcase_02 AC 23 ms
17,536 KB
testcase_03 AC 125 ms
21,760 KB
testcase_04 AC 138 ms
21,888 KB
testcase_05 AC 106 ms
21,632 KB
testcase_06 AC 71 ms
21,632 KB
testcase_07 AC 133 ms
21,760 KB
testcase_08 AC 118 ms
21,632 KB
testcase_09 AC 137 ms
21,632 KB
testcase_10 AC 50 ms
20,608 KB
testcase_11 AC 181 ms
21,632 KB
testcase_12 AC 96 ms
21,888 KB
testcase_13 AC 24 ms
17,536 KB
testcase_14 AC 24 ms
17,792 KB
testcase_15 AC 23 ms
17,536 KB
testcase_16 AC 23 ms
17,792 KB
testcase_17 AC 23 ms
17,536 KB
testcase_18 AC 22 ms
17,664 KB
testcase_19 AC 23 ms
17,792 KB
testcase_20 AC 24 ms
17,664 KB
testcase_21 AC 24 ms
17,536 KB
testcase_22 AC 24 ms
17,664 KB
testcase_23 AC 25 ms
17,792 KB
testcase_24 AC 25 ms
17,920 KB
testcase_25 AC 24 ms
17,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            int oo = 0;
            int oe = 0;
            int eo = 0;
            int ee = 0;

            for (int i = 1; i <= n; i++)
            {
                var ss = Console.ReadLine().Split();
                if (int.Parse(ss[0]) % 2 == 1 && int.Parse(ss[1]) % 2 == 1) oo++;
                if (int.Parse(ss[0]) % 2 == 1 && int.Parse(ss[1]) % 2 == 0) oe++;
                if (int.Parse(ss[0]) % 2 == 0 && int.Parse(ss[1]) % 2 == 1) eo++;
                if (int.Parse(ss[0]) % 2 == 0 && int.Parse(ss[1]) % 2 == 0)  ee++;
            }

            Console.WriteLine((oo / 2 + oe / 2 + eo / 2 + ee / 2) % 2 == 0 ? "Bob" : "Alice");
        }
    }
}
0