結果

問題 No.2619 Sorted Nim
ユーザー nikoro256nikoro256
提出日時 2024-01-27 00:37:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,164 KB
最終ジャッジ日時 2024-09-28 09:19:51
合計ジャッジ時間 7,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 75 ms
100,992 KB
testcase_03 AC 83 ms
107,264 KB
testcase_04 AC 77 ms
101,120 KB
testcase_05 AC 81 ms
101,376 KB
testcase_06 AC 96 ms
103,648 KB
testcase_07 WA -
testcase_08 AC 89 ms
112,164 KB
testcase_09 WA -
testcase_10 AC 80 ms
107,264 KB
testcase_11 WA -
testcase_12 AC 82 ms
107,148 KB
testcase_13 WA -
testcase_14 AC 83 ms
107,304 KB
testcase_15 WA -
testcase_16 AC 88 ms
112,164 KB
testcase_17 WA -
testcase_18 AC 86 ms
109,000 KB
testcase_19 WA -
testcase_20 AC 76 ms
100,348 KB
testcase_21 AC 96 ms
103,388 KB
testcase_22 AC 76 ms
102,236 KB
testcase_23 AC 81 ms
106,648 KB
testcase_24 AC 90 ms
111,808 KB
testcase_25 AC 90 ms
111,900 KB
testcase_26 AC 81 ms
106,088 KB
testcase_27 AC 77 ms
101,116 KB
testcase_28 AC 100 ms
103,536 KB
testcase_29 AC 96 ms
111,748 KB
testcase_30 AC 81 ms
106,184 KB
testcase_31 AC 36 ms
52,404 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 79 ms
100,792 KB
testcase_35 WA -
testcase_36 AC 82 ms
107,176 KB
testcase_37 AC 36 ms
52,840 KB
testcase_38 AC 78 ms
101,364 KB
testcase_39 AC 89 ms
108,968 KB
testcase_40 AC 79 ms
102,352 KB
testcase_41 WA -
testcase_42 AC 75 ms
100,616 KB
testcase_43 AC 87 ms
109,144 KB
testcase_44 AC 82 ms
106,968 KB
testcase_45 AC 87 ms
108,760 KB
testcase_46 AC 82 ms
105,884 KB
testcase_47 AC 73 ms
100,532 KB
testcase_48 AC 35 ms
52,212 KB
testcase_49 AC 80 ms
105,604 KB
testcase_50 AC 76 ms
101,072 KB
testcase_51 AC 81 ms
105,452 KB
testcase_52 AC 37 ms
52,952 KB
testcase_53 AC 96 ms
103,656 KB
testcase_54 AC 77 ms
101,916 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 90 ms
107,516 KB
testcase_58 AC 89 ms
111,788 KB
testcase_59 WA -
testcase_60 AC 80 ms
101,148 KB
testcase_61 AC 81 ms
102,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
lis=[A[0]]+[A[i+1]-A[i] for i in range(N-1)]
lis[::-1]
nim=0
for i in range(0,N,2):
    nim^=lis[i]
if nim==0:
    print('Second')
else:
    print('First')
0