結果

問題 No.1208 anti primenumber game
ユーザー rlangevinrlangevin
提出日時 2023-08-27 18:12:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,840 KB
最終ジャッジ日時 2024-12-27 22:57:14
合計ジャッジ時間 6,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 44 ms
51,712 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 43 ms
51,712 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 42 ms
51,692 KB
testcase_15 AC 84 ms
97,152 KB
testcase_16 AC 81 ms
96,896 KB
testcase_17 AC 81 ms
97,024 KB
testcase_18 AC 80 ms
96,640 KB
testcase_19 AC 83 ms
96,896 KB
testcase_20 AC 81 ms
97,280 KB
testcase_21 AC 78 ms
95,744 KB
testcase_22 AC 81 ms
95,360 KB
testcase_23 AC 80 ms
95,488 KB
testcase_24 AC 110 ms
100,536 KB
testcase_25 AC 107 ms
100,512 KB
testcase_26 AC 109 ms
100,992 KB
testcase_27 AC 106 ms
101,248 KB
testcase_28 AC 106 ms
100,960 KB
testcase_29 AC 106 ms
101,108 KB
testcase_30 AC 81 ms
97,408 KB
testcase_31 AC 77 ms
96,896 KB
testcase_32 AC 77 ms
95,616 KB
testcase_33 AC 78 ms
95,872 KB
testcase_34 AC 78 ms
95,744 KB
testcase_35 AC 78 ms
95,744 KB
testcase_36 AC 69 ms
87,168 KB
testcase_37 AC 80 ms
95,516 KB
testcase_38 AC 94 ms
105,832 KB
testcase_39 AC 94 ms
105,840 KB
testcase_40 AC 106 ms
100,676 KB
testcase_41 AC 80 ms
97,024 KB
testcase_42 AC 81 ms
96,512 KB
testcase_43 AC 81 ms
97,024 KB
testcase_44 AC 80 ms
96,896 KB
testcase_45 AC 82 ms
96,680 KB
testcase_46 AC 76 ms
91,392 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