結果

問題 No.1208 anti primenumber game
ユーザー rlangevinrlangevin
提出日時 2023-08-27 18:12:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 105,920 KB
最終ジャッジ日時 2024-06-08 13:59:03
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 37 ms
51,456 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 37 ms
51,584 KB
testcase_13 AC 37 ms
52,064 KB
testcase_14 AC 37 ms
51,584 KB
testcase_15 AC 83 ms
97,536 KB
testcase_16 AC 75 ms
97,152 KB
testcase_17 AC 77 ms
98,648 KB
testcase_18 AC 75 ms
96,936 KB
testcase_19 AC 76 ms
97,968 KB
testcase_20 AC 75 ms
97,160 KB
testcase_21 AC 72 ms
95,704 KB
testcase_22 AC 71 ms
96,480 KB
testcase_23 AC 71 ms
96,316 KB
testcase_24 AC 99 ms
100,800 KB
testcase_25 AC 100 ms
100,920 KB
testcase_26 AC 100 ms
101,236 KB
testcase_27 AC 99 ms
101,144 KB
testcase_28 AC 100 ms
101,204 KB
testcase_29 AC 100 ms
101,040 KB
testcase_30 AC 76 ms
97,972 KB
testcase_31 AC 75 ms
97,456 KB
testcase_32 AC 71 ms
96,296 KB
testcase_33 AC 71 ms
96,296 KB
testcase_34 AC 71 ms
96,180 KB
testcase_35 AC 72 ms
96,132 KB
testcase_36 AC 64 ms
88,532 KB
testcase_37 AC 71 ms
96,600 KB
testcase_38 AC 87 ms
105,920 KB
testcase_39 AC 88 ms
105,884 KB
testcase_40 AC 99 ms
100,852 KB
testcase_41 AC 74 ms
97,492 KB
testcase_42 AC 75 ms
97,296 KB
testcase_43 AC 75 ms
97,660 KB
testcase_44 AC 76 ms
98,656 KB
testcase_45 AC 73 ms
97,912 KB
testcase_46 AC 68 ms
92,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
now = 0
for i in range(N):
    if A[i] >= 2:
        if i % 2:
            print("Second")
        else:
            print("First")
        exit()
    else:
        if i % 2:
            now -= 1 - M
        else:
            now += 1 - M
            
print("First") if now >= 1 else print("Second")
0