結果

問題 No.2619 Sorted Nim
ユーザー rlangevinrlangevin
提出日時 2024-01-27 15:03:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,140 KB
最終ジャッジ日時 2024-09-28 09:39:31
合計ジャッジ時間 8,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 84 ms
99,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 95 ms
107,264 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 91 ms
104,192 KB
testcase_11 WA -
testcase_12 AC 89 ms
104,592 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 90 ms
104,448 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
97,536 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 92 ms
105,600 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 86 ms
103,792 KB
testcase_27 WA -
testcase_28 AC 99 ms
101,700 KB
testcase_29 AC 96 ms
109,140 KB
testcase_30 WA -
testcase_31 AC 39 ms
51,688 KB
testcase_32 WA -
testcase_33 AC 92 ms
101,676 KB
testcase_34 AC 88 ms
97,864 KB
testcase_35 AC 90 ms
102,400 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 88 ms
99,472 KB
testcase_39 WA -
testcase_40 AC 86 ms
98,976 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 92 ms
105,980 KB
testcase_44 AC 91 ms
105,268 KB
testcase_45 AC 94 ms
106,112 KB
testcase_46 AC 86 ms
102,400 KB
testcase_47 AC 82 ms
99,208 KB
testcase_48 AC 39 ms
51,584 KB
testcase_49 WA -
testcase_50 AC 84 ms
98,816 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 83 ms
98,704 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 94 ms
107,752 KB
testcase_59 WA -
testcase_60 AC 81 ms
98,428 KB
testcase_61 AC 82 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
S = set()
if N == 2:
    S.add(0)
if N % 2:
    A = [0] + A
for i in range(N):
    if i % 2:
        S.add(A[i] - A[i - 1])
print("First") if len(S) != 1 else print("Second")
0