結果

問題 No.1208 anti primenumber game
ユーザー mlihua09mlihua09
提出日時 2020-08-30 14:58:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 105,784 KB
最終ジャッジ日時 2024-11-15 08:18:05
合計ジャッジ時間 5,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 37 ms
51,692 KB
testcase_02 AC 36 ms
51,448 KB
testcase_03 AC 37 ms
51,524 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
52,752 KB
testcase_07 AC 38 ms
52,904 KB
testcase_08 AC 38 ms
53,024 KB
testcase_09 AC 37 ms
53,208 KB
testcase_10 AC 37 ms
51,760 KB
testcase_11 AC 38 ms
53,020 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 37 ms
52,380 KB
testcase_14 AC 37 ms
52,356 KB
testcase_15 AC 73 ms
96,588 KB
testcase_16 AC 72 ms
96,304 KB
testcase_17 AC 71 ms
97,236 KB
testcase_18 AC 71 ms
97,808 KB
testcase_19 AC 72 ms
96,960 KB
testcase_20 AC 71 ms
96,900 KB
testcase_21 AC 71 ms
96,368 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 99 ms
100,384 KB
testcase_25 AC 98 ms
100,076 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 97 ms
101,172 KB
testcase_29 AC 96 ms
100,912 KB
testcase_30 WA -
testcase_31 AC 73 ms
96,856 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 63 ms
87,724 KB
testcase_37 AC 70 ms
95,552 KB
testcase_38 AC 82 ms
105,784 KB
testcase_39 AC 85 ms
105,612 KB
testcase_40 WA -
testcase_41 AC 72 ms
97,616 KB
testcase_42 AC 73 ms
97,792 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 72 ms
97,648 KB
testcase_46 AC 68 ms
93,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

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

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