結果

問題 No.1208 anti primenumber game
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-11 22:30:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 115,400 KB
最終ジャッジ日時 2024-07-18 09:48:28
合計ジャッジ時間 5,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,072 KB
testcase_01 AC 31 ms
52,444 KB
testcase_02 AC 34 ms
52,640 KB
testcase_03 AC 34 ms
53,892 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 32 ms
52,688 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
52,824 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 32 ms
53,944 KB
testcase_14 AC 32 ms
52,896 KB
testcase_15 AC 72 ms
97,584 KB
testcase_16 AC 74 ms
98,128 KB
testcase_17 AC 74 ms
98,212 KB
testcase_18 AC 66 ms
98,324 KB
testcase_19 AC 67 ms
98,568 KB
testcase_20 AC 69 ms
98,384 KB
testcase_21 AC 82 ms
115,400 KB
testcase_22 AC 81 ms
113,884 KB
testcase_23 AC 81 ms
110,332 KB
testcase_24 AC 100 ms
113,844 KB
testcase_25 AC 99 ms
114,356 KB
testcase_26 AC 103 ms
112,064 KB
testcase_27 AC 99 ms
111,916 KB
testcase_28 AC 106 ms
111,940 KB
testcase_29 AC 98 ms
112,180 KB
testcase_30 AC 71 ms
99,148 KB
testcase_31 AC 69 ms
98,940 KB
testcase_32 AC 72 ms
102,032 KB
testcase_33 AC 81 ms
112,816 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 69 ms
100,968 KB
testcase_37 AC 78 ms
113,084 KB
testcase_38 AC 93 ms
107,588 KB
testcase_39 AC 96 ms
107,052 KB
testcase_40 AC 104 ms
112,240 KB
testcase_41 AC 76 ms
103,344 KB
testcase_42 AC 84 ms
114,852 KB
testcase_43 AC 83 ms
114,788 KB
testcase_44 AC 81 ms
111,368 KB
testcase_45 AC 82 ms
111,132 KB
testcase_46 AC 77 ms
105,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

"""
A = 1:取るしかない +1-M   手番が相手に
  = x:1残し +x-1         次も自分
    ぜんぶとる +x-M   手番が相手に
1が連続してるとこは圧縮できる
"""

B = []
for a in A:
    if a == 1 and B and B[-1] == 1:
        B.pop()
        continue
    B.append(a)

if not B:
    print("Second")
    exit()


def game(B, i):
    X, Y = 0, 0
    while i < len(B):
        b = B[i]
        if i + 1 < len(B) and B[i + 1] == 1:
            X += b - M
            Y += 1 - M
            i += 2
        else:
            X += b - 1
            Y += 1 - M
            i += 1
    return X, Y


X = 0
Y = 0
if B and B[0] == 1:
    X = 1 - M
    Q, P = game(B, 1)
else:
    P, Q = game(B, 1)
X += P
Y += Q
if X > Y:
    print("First")
else:
    print("Second")
0