結果

問題 No.2619 Sorted Nim
ユーザー nikoro256nikoro256
提出日時 2024-01-26 23:18:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-28 09:05:03
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 88 ms
95,744 KB
testcase_03 AC 97 ms
101,760 KB
testcase_04 AC 93 ms
95,872 KB
testcase_05 AC 90 ms
95,872 KB
testcase_06 AC 108 ms
101,504 KB
testcase_07 AC 86 ms
96,000 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 93 ms
101,632 KB
testcase_11 AC 90 ms
100,096 KB
testcase_12 AC 95 ms
101,248 KB
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 97 ms
101,504 KB
testcase_15 AC 91 ms
99,968 KB
testcase_16 AC 97 ms
105,344 KB
testcase_17 AC 102 ms
107,520 KB
testcase_18 AC 94 ms
102,144 KB
testcase_19 AC 88 ms
95,616 KB
testcase_20 AC 91 ms
95,488 KB
testcase_21 AC 109 ms
101,760 KB
testcase_22 AC 91 ms
97,152 KB
testcase_23 WA -
testcase_24 AC 100 ms
105,600 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 89 ms
96,000 KB
testcase_28 AC 111 ms
101,632 KB
testcase_29 AC 98 ms
105,600 KB
testcase_30 AC 94 ms
101,120 KB
testcase_31 WA -
testcase_32 AC 94 ms
96,128 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 92 ms
100,480 KB
testcase_36 AC 93 ms
101,760 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 94 ms
101,888 KB
testcase_40 AC 87 ms
96,768 KB
testcase_41 AC 88 ms
97,152 KB
testcase_42 AC 92 ms
95,488 KB
testcase_43 AC 100 ms
102,272 KB
testcase_44 AC 97 ms
100,992 KB
testcase_45 WA -
testcase_46 AC 99 ms
100,864 KB
testcase_47 AC 89 ms
95,616 KB
testcase_48 WA -
testcase_49 AC 93 ms
99,968 KB
testcase_50 AC 95 ms
95,744 KB
testcase_51 AC 99 ms
100,608 KB
testcase_52 AC 45 ms
51,456 KB
testcase_53 AC 115 ms
101,888 KB
testcase_54 WA -
testcase_55 AC 107 ms
107,136 KB
testcase_56 AC 102 ms
99,840 KB
testcase_57 AC 102 ms
105,856 KB
testcase_58 AC 98 ms
105,600 KB
testcase_59 AC 95 ms
100,352 KB
testcase_60 AC 93 ms
96,128 KB
testcase_61 AC 91 ms
96,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if sum(A)%2==0:
    print('Second')
else:
    print('First')
0