結果

問題 No.1267 Stop and Coin Game
ユーザー みずみず
提出日時 2020-10-23 23:05:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 54,748 KB
最終ジャッジ日時 2024-07-21 12:24:50
合計ジャッジ時間 3,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,016 KB
testcase_01 AC 40 ms
52,204 KB
testcase_02 AC 40 ms
52,764 KB
testcase_03 AC 40 ms
53,320 KB
testcase_04 AC 40 ms
52,220 KB
testcase_05 AC 43 ms
53,160 KB
testcase_06 AC 41 ms
53,072 KB
testcase_07 AC 41 ms
52,056 KB
testcase_08 AC 39 ms
53,580 KB
testcase_09 AC 40 ms
52,112 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
52,236 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
52,824 KB
testcase_15 AC 41 ms
53,068 KB
testcase_16 AC 41 ms
53,564 KB
testcase_17 AC 40 ms
51,952 KB
testcase_18 WA -
testcase_19 AC 40 ms
52,620 KB
testcase_20 WA -
testcase_21 AC 39 ms
52,612 KB
testcase_22 WA -
testcase_23 AC 40 ms
52,332 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 40 ms
52,368 KB
testcase_27 AC 40 ms
52,828 KB
testcase_28 AC 40 ms
53,100 KB
testcase_29 WA -
testcase_30 AC 39 ms
53,712 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
51,684 KB
testcase_34 WA -
testcase_35 AC 40 ms
52,820 KB
testcase_36 AC 39 ms
52,888 KB
testcase_37 WA -
testcase_38 AC 40 ms
51,828 KB
testcase_39 WA -
testcase_40 AC 41 ms
52,952 KB
testcase_41 WA -
testcase_42 AC 41 ms
51,748 KB
testcase_43 AC 40 ms
53,196 KB
testcase_44 AC 40 ms
52,696 KB
testcase_45 AC 40 ms
53,340 KB
testcase_46 AC 41 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(311111)
# import numpy as np
ikimasu = sys.stdin.buffer.readline
ini = lambda: int(ins())
ina = lambda: list(map(int, ikimasu().split()))
ins = lambda: ikimasu().strip()

n ,x= ina()
tmp = ina()
if(sum(tmp)<=x):
    print("Draw")
    exit()
tmp.sort()
if(len(tmp)==1):
    print("Second")
    exit()
i1 = 1
for i in range(n):
    i1*=-1
    if(tmp[i]+tmp[-1]>x):
        if(i1==-1):
            print("First")
            break
        else:
            print("Second")
            break
    else:
        x-=tmp[i]
0