結果

問題 No.2823 PEX (Predecessing Excluded Value) Game
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-11 16:38:11
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 234 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,588 KB
最終ジャッジ日時 2024-07-27 21:21:37
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,212 KB
testcase_01 AC 34 ms
52,640 KB
testcase_02 AC 34 ms
52,936 KB
testcase_03 AC 196 ms
76,540 KB
testcase_04 AC 155 ms
76,588 KB
testcase_05 AC 231 ms
76,188 KB
testcase_06 AC 60 ms
68,648 KB
testcase_07 AC 58 ms
68,168 KB
testcase_08 AC 57 ms
69,052 KB
testcase_09 AC 65 ms
76,308 KB
testcase_10 AC 57 ms
68,440 KB
testcase_11 AC 60 ms
70,124 KB
testcase_12 AC 56 ms
67,832 KB
testcase_13 AC 49 ms
62,268 KB
testcase_14 AC 47 ms
61,720 KB
testcase_15 AC 57 ms
67,996 KB
testcase_16 AC 39 ms
55,348 KB
testcase_17 AC 42 ms
55,408 KB
testcase_18 AC 37 ms
52,456 KB
testcase_19 AC 38 ms
54,016 KB
testcase_20 AC 41 ms
54,432 KB
testcase_21 AC 42 ms
55,532 KB
testcase_22 AC 36 ms
52,612 KB
testcase_23 AC 34 ms
53,356 KB
testcase_24 AC 35 ms
53,744 KB
testcase_25 AC 35 ms
53,076 KB
testcase_26 AC 35 ms
52,336 KB
testcase_27 AC 35 ms
52,324 KB
testcase_28 AC 37 ms
53,804 KB
testcase_29 AC 35 ms
52,068 KB
testcase_30 AC 33 ms
52,412 KB
testcase_31 AC 34 ms
53,480 KB
testcase_32 AC 33 ms
53,204 KB
testcase_33 AC 33 ms
53,336 KB
testcase_34 AC 33 ms
53,424 KB
testcase_35 AC 34 ms
52,212 KB
testcase_36 AC 35 ms
52,064 KB
testcase_37 AC 34 ms
52,260 KB
testcase_38 AC 34 ms
53,300 KB
testcase_39 AC 35 ms
52,588 KB
testcase_40 AC 37 ms
53,248 KB
testcase_41 AC 33 ms
53,432 KB
testcase_42 AC 35 ms
53,164 KB
testcase_43 AC 35 ms
52,364 KB
testcase_44 AC 33 ms
53,384 KB
testcase_45 AC 33 ms
52,552 KB
testcase_46 AC 34 ms
52,216 KB
testcase_47 AC 36 ms
52,944 KB
testcase_48 AC 34 ms
52,768 KB
testcase_49 AC 34 ms
52,680 KB
testcase_50 AC 34 ms
52,968 KB
testcase_51 AC 34 ms
52,212 KB
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

grundy = 0
blanks = 0
prev_r = 0
for _ in range(n):
    l, r = map(int, input().split())
    l -= 1
    blanks += l - prev_r
    if blanks % 2: grundy ^= r - l
    prev_r = r

print(["First", "Second"][grundy == 0])
0