結果

問題 No.1267 Stop and Coin Game
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-23 23:49:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-21 13:50:26
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,248 KB
testcase_01 AC 41 ms
54,884 KB
testcase_02 AC 41 ms
54,468 KB
testcase_03 AC 41 ms
53,972 KB
testcase_04 WA -
testcase_05 AC 41 ms
54,508 KB
testcase_06 AC 42 ms
54,504 KB
testcase_07 AC 41 ms
54,236 KB
testcase_08 AC 40 ms
54,012 KB
testcase_09 AC 41 ms
54,932 KB
testcase_10 WA -
testcase_11 AC 41 ms
54,840 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
54,916 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 42 ms
55,136 KB
testcase_20 AC 41 ms
54,696 KB
testcase_21 AC 40 ms
54,864 KB
testcase_22 AC 41 ms
53,680 KB
testcase_23 AC 40 ms
55,680 KB
testcase_24 AC 43 ms
54,376 KB
testcase_25 WA -
testcase_26 AC 41 ms
54,952 KB
testcase_27 WA -
testcase_28 AC 43 ms
54,540 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 41 ms
54,232 KB
testcase_33 WA -
testcase_34 AC 41 ms
54,088 KB
testcase_35 AC 40 ms
54,024 KB
testcase_36 AC 39 ms
54,292 KB
testcase_37 AC 41 ms
54,228 KB
testcase_38 AC 41 ms
55,424 KB
testcase_39 WA -
testcase_40 AC 41 ms
54,172 KB
testcase_41 AC 41 ms
54,720 KB
testcase_42 AC 40 ms
54,468 KB
testcase_43 AC 40 ms
54,748 KB
testcase_44 AC 41 ms
54,508 KB
testcase_45 AC 42 ms
53,664 KB
testcase_46 AC 41 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
A = list(map(int, input().split()))

if sum(A) <= v:
    print('Draw')

A.sort()
from collections import deque
A = deque(A)
for i in range(n):
    if i != n-1:
        if A[-1] <= v:
            v -= A[-1]
            A.pop()
        else:
            if v-A[0] < 0:
                if i%2 == 0:
                    print('Second')
                    exit()
                else:
                    print('First')
                    exit()
            else:
                v -= A[0]
                A.popleft()
    else:
        if v-A[0] < 0:
            if i%2 == 0:
                print('Second')
                exit()
            else:
                print('First')
                exit()
0