結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,832 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 38 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 38 ms
51,688 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 77 ms
100,096 KB
testcase_16 WA -
testcase_17 AC 82 ms
100,096 KB
testcase_18 AC 80 ms
100,096 KB
testcase_19 WA -
testcase_20 AC 81 ms
99,840 KB
testcase_21 AC 82 ms
98,944 KB
testcase_22 AC 82 ms
99,456 KB
testcase_23 AC 80 ms
99,200 KB
testcase_24 AC 102 ms
103,412 KB
testcase_25 AC 115 ms
103,728 KB
testcase_26 AC 115 ms
101,444 KB
testcase_27 AC 113 ms
100,932 KB
testcase_28 AC 113 ms
101,312 KB
testcase_29 AC 113 ms
101,304 KB
testcase_30 AC 85 ms
99,584 KB
testcase_31 WA -
testcase_32 AC 84 ms
98,688 KB
testcase_33 AC 85 ms
98,944 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 77 ms
89,856 KB
testcase_37 AC 86 ms
98,688 KB
testcase_38 AC 106 ms
110,720 KB
testcase_39 AC 107 ms
110,592 KB
testcase_40 AC 114 ms
101,148 KB
testcase_41 WA -
testcase_42 AC 87 ms
100,352 KB
testcase_43 AC 89 ms
100,224 KB
testcase_44 AC 88 ms
100,224 KB
testcase_45 AC 88 ms
100,096 KB
testcase_46 AC 82 ms
94,720 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]
    tmp=sum(A)-N+2*(1-M)*(2*A.count(1)-N)
    if tmp>0:
        print("First")
    else:
        print("Second")
else:
    A=A[::-1]
    tmp=(1-M)-(sum(A)-N+2*(1-M)*(2*A.count(1)-N))
    if tmp>0:
        print("First")
    else:
        print("Second")
0