結果

問題 No.2619 Sorted Nim
ユーザー nikoro256nikoro256
提出日時 2024-01-26 23:18:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 107,176 KB
最終ジャッジ日時 2024-01-26 23:18:50
合計ジャッジ時間 7,444 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,332 KB
testcase_01 AC 36 ms
53,332 KB
testcase_02 AC 72 ms
96,788 KB
testcase_03 AC 79 ms
101,428 KB
testcase_04 AC 72 ms
96,860 KB
testcase_05 AC 73 ms
96,860 KB
testcase_06 AC 93 ms
101,372 KB
testcase_07 AC 73 ms
96,776 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 80 ms
101,580 KB
testcase_11 AC 77 ms
100,072 KB
testcase_12 AC 78 ms
101,096 KB
testcase_13 AC 35 ms
53,332 KB
testcase_14 AC 78 ms
101,580 KB
testcase_15 AC 76 ms
100,084 KB
testcase_16 AC 81 ms
105,168 KB
testcase_17 AC 87 ms
107,176 KB
testcase_18 AC 78 ms
101,932 KB
testcase_19 AC 72 ms
96,716 KB
testcase_20 AC 72 ms
96,752 KB
testcase_21 AC 92 ms
101,420 KB
testcase_22 AC 73 ms
97,176 KB
testcase_23 WA -
testcase_24 AC 82 ms
105,368 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 72 ms
96,776 KB
testcase_28 AC 91 ms
101,396 KB
testcase_29 AC 82 ms
105,508 KB
testcase_30 AC 78 ms
100,556 KB
testcase_31 WA -
testcase_32 AC 72 ms
96,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 76 ms
100,544 KB
testcase_36 AC 80 ms
101,568 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 79 ms
101,920 KB
testcase_40 AC 74 ms
97,152 KB
testcase_41 AC 74 ms
97,164 KB
testcase_42 AC 73 ms
96,728 KB
testcase_43 AC 80 ms
101,908 KB
testcase_44 AC 78 ms
100,932 KB
testcase_45 WA -
testcase_46 AC 76 ms
100,380 KB
testcase_47 AC 73 ms
96,800 KB
testcase_48 WA -
testcase_49 AC 77 ms
100,084 KB
testcase_50 AC 72 ms
96,800 KB
testcase_51 AC 76 ms
100,120 KB
testcase_52 AC 36 ms
53,332 KB
testcase_53 AC 92 ms
101,560 KB
testcase_54 WA -
testcase_55 AC 87 ms
107,164 KB
testcase_56 AC 77 ms
100,120 KB
testcase_57 AC 82 ms
105,580 KB
testcase_58 AC 81 ms
105,332 KB
testcase_59 AC 76 ms
100,120 KB
testcase_60 AC 73 ms
96,908 KB
testcase_61 AC 74 ms
97,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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