結果

問題 No.1208 anti primenumber game
ユーザー tamatotamato
提出日時 2020-10-18 19:49:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-07-21 06:42:20
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 81 ms
103,168 KB
testcase_16 AC 83 ms
103,040 KB
testcase_17 AC 80 ms
102,784 KB
testcase_18 AC 79 ms
103,288 KB
testcase_19 AC 78 ms
103,168 KB
testcase_20 AC 80 ms
103,184 KB
testcase_21 AC 80 ms
103,296 KB
testcase_22 AC 82 ms
103,040 KB
testcase_23 AC 83 ms
103,040 KB
testcase_24 AC 97 ms
101,128 KB
testcase_25 AC 97 ms
101,108 KB
testcase_26 AC 99 ms
98,560 KB
testcase_27 AC 98 ms
98,560 KB
testcase_28 AC 99 ms
99,072 KB
testcase_29 AC 97 ms
98,688 KB
testcase_30 WA -
testcase_31 AC 80 ms
103,224 KB
testcase_32 AC 82 ms
103,296 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 67 ms
88,064 KB
testcase_37 AC 75 ms
96,000 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 103 ms
98,996 KB
testcase_41 AC 86 ms
103,296 KB
testcase_42 AC 86 ms
103,296 KB
testcase_43 WA -
testcase_44 AC 88 ms
103,296 KB
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    x = y = 0
    flg = 1
    for a in A:
        if flg == 1:
            if a != 1:
                x += a - 1
                y += 1 - M
            else:
                x += 1 - M
                flg = 0
        else:
            if a != 1:
                y += a - 1
                x += 1 - M
            else:
                y += 1 - M
                flg = 1

    if x > y:
        print("First")
    else:
        print("Second")


if __name__ == '__main__':
    main()
0