結果

問題 No.2823 PEX (Predecessing Excluded Value) Game
ユーザー 👑 rin204rin204
提出日時 2024-07-28 11:59:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 76,396 KB
最終ジャッジ日時 2024-07-28 11:59:43
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,708 KB
testcase_01 AC 36 ms
52,908 KB
testcase_02 AC 37 ms
53,372 KB
testcase_03 AC 208 ms
76,304 KB
testcase_04 AC 165 ms
76,396 KB
testcase_05 AC 248 ms
76,344 KB
testcase_06 AC 61 ms
67,608 KB
testcase_07 AC 61 ms
67,688 KB
testcase_08 AC 60 ms
68,172 KB
testcase_09 AC 71 ms
76,324 KB
testcase_10 AC 60 ms
67,956 KB
testcase_11 AC 63 ms
70,632 KB
testcase_12 AC 62 ms
67,704 KB
testcase_13 AC 52 ms
62,364 KB
testcase_14 AC 51 ms
62,224 KB
testcase_15 AC 61 ms
67,648 KB
testcase_16 AC 43 ms
56,008 KB
testcase_17 AC 43 ms
54,788 KB
testcase_18 AC 38 ms
52,980 KB
testcase_19 AC 39 ms
53,376 KB
testcase_20 AC 42 ms
55,392 KB
testcase_21 AC 44 ms
55,216 KB
testcase_22 AC 37 ms
53,124 KB
testcase_23 AC 37 ms
52,304 KB
testcase_24 AC 36 ms
53,016 KB
testcase_25 AC 37 ms
52,796 KB
testcase_26 AC 36 ms
52,412 KB
testcase_27 AC 38 ms
52,516 KB
testcase_28 AC 39 ms
52,700 KB
testcase_29 AC 38 ms
52,760 KB
testcase_30 AC 38 ms
52,208 KB
testcase_31 AC 38 ms
52,760 KB
testcase_32 AC 38 ms
52,912 KB
testcase_33 AC 37 ms
53,780 KB
testcase_34 AC 37 ms
52,580 KB
testcase_35 AC 37 ms
52,272 KB
testcase_36 AC 37 ms
52,448 KB
testcase_37 AC 36 ms
52,188 KB
testcase_38 AC 37 ms
52,752 KB
testcase_39 AC 37 ms
52,424 KB
testcase_40 AC 37 ms
51,820 KB
testcase_41 AC 38 ms
53,020 KB
testcase_42 AC 36 ms
52,312 KB
testcase_43 AC 36 ms
53,568 KB
testcase_44 AC 37 ms
52,532 KB
testcase_45 AC 37 ms
52,816 KB
testcase_46 AC 37 ms
52,500 KB
testcase_47 AC 37 ms
53,140 KB
testcase_48 AC 37 ms
52,196 KB
testcase_49 AC 37 ms
52,152 KB
testcase_50 AC 36 ms
53,492 KB
testcase_51 AC 37 ms
52,624 KB
testcase_52 AC 36 ms
51,904 KB
testcase_53 AC 36 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = 0
t = 0
b = 1
y = 0
for _ in range(n):
    l, r = map(int, input().split())
    t ^= (l - b) & 1
    if t == 1:
        if b == l:
            x ^= y
            l -= y
        x ^= r - l + 1
        y = r - l + 1

    b = r + 1


if x == 0:
    print("Second")
else:
    print("First")
0