結果

問題 No.1208 anti primenumber game
ユーザー ayaoniayaoni
提出日時 2021-01-13 06:16:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 107,548 KB
最終ジャッジ日時 2024-11-21 20:45:41
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 48 ms
51,584 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 87 ms
104,320 KB
testcase_16 AC 89 ms
104,320 KB
testcase_17 AC 89 ms
104,704 KB
testcase_18 AC 86 ms
104,320 KB
testcase_19 AC 88 ms
104,832 KB
testcase_20 AC 86 ms
104,704 KB
testcase_21 WA -
testcase_22 AC 79 ms
97,280 KB
testcase_23 WA -
testcase_24 AC 104 ms
102,080 KB
testcase_25 AC 102 ms
101,944 KB
testcase_26 AC 100 ms
100,608 KB
testcase_27 AC 103 ms
100,468 KB
testcase_28 AC 106 ms
100,096 KB
testcase_29 AC 103 ms
100,704 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 81 ms
97,536 KB
testcase_34 AC 80 ms
97,408 KB
testcase_35 AC 81 ms
97,536 KB
testcase_36 AC 71 ms
88,832 KB
testcase_37 AC 81 ms
97,152 KB
testcase_38 WA -
testcase_39 AC 94 ms
107,520 KB
testcase_40 AC 105 ms
100,992 KB
testcase_41 WA -
testcase_42 AC 83 ms
98,688 KB
testcase_43 WA -
testcase_44 AC 81 ms
98,688 KB
testcase_45 WA -
testcase_46 AC 75 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
A = LI()

if A == [1]*N:
    if N % 2 == 1 and M == 0:
        print('First')
    else:
        print('Second')
else:
    for i in range(N):
        if A[i] != 1:
            if i % 2 == 0:
                print('First')
            else:
                print('Second')
        break
0