結果

問題 No.1208 anti primenumber game
ユーザー chineristACchineristAC
提出日時 2020-08-30 15:14:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 110,632 KB
最終ジャッジ日時 2024-11-15 08:43:30
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,472 KB
testcase_01 AC 39 ms
51,896 KB
testcase_02 AC 37 ms
53,356 KB
testcase_03 AC 37 ms
52,960 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,468 KB
testcase_06 AC 37 ms
52,364 KB
testcase_07 AC 38 ms
53,492 KB
testcase_08 AC 38 ms
53,084 KB
testcase_09 AC 38 ms
52,468 KB
testcase_10 AC 38 ms
52,092 KB
testcase_11 AC 38 ms
52,672 KB
testcase_12 AC 37 ms
52,336 KB
testcase_13 AC 37 ms
52,164 KB
testcase_14 AC 38 ms
51,744 KB
testcase_15 AC 76 ms
101,412 KB
testcase_16 AC 78 ms
99,784 KB
testcase_17 AC 78 ms
101,180 KB
testcase_18 AC 78 ms
100,800 KB
testcase_19 AC 78 ms
100,512 KB
testcase_20 AC 78 ms
99,656 KB
testcase_21 AC 78 ms
99,900 KB
testcase_22 AC 77 ms
98,700 KB
testcase_23 AC 76 ms
100,584 KB
testcase_24 AC 104 ms
103,644 KB
testcase_25 AC 103 ms
103,660 KB
testcase_26 AC 103 ms
101,260 KB
testcase_27 AC 104 ms
101,072 KB
testcase_28 AC 102 ms
101,264 KB
testcase_29 AC 103 ms
101,236 KB
testcase_30 AC 78 ms
100,248 KB
testcase_31 WA -
testcase_32 AC 78 ms
100,240 KB
testcase_33 AC 78 ms
100,068 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 69 ms
90,428 KB
testcase_37 AC 77 ms
100,516 KB
testcase_38 AC 93 ms
110,352 KB
testcase_39 AC 94 ms
110,632 KB
testcase_40 AC 103 ms
101,364 KB
testcase_41 WA -
testcase_42 AC 80 ms
100,688 KB
testcase_43 AC 79 ms
100,456 KB
testcase_44 AC 80 ms
100,668 KB
testcase_45 AC 80 ms
100,964 KB
testcase_46 AC 74 ms
95,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))[::-1]

check=0
while A and A[-1]==1:
    A.pop()
    check+=1

if check%2==0:
    A=A[::-1]
    N=len(A)
    tmp=sum(A)-N+2*(1-M)*(2*A.count(1)-N)
    if tmp>0:
        print("First")
    else:
        print("Second")
else:
    A=A[::-1]
    N=len(A)
    tmp=(1-M)-(sum(A)-N+2*(1-M)*(2*A.count(1)-N))
    if tmp>0:
        print("First")
    else:
        print("Second")
0