結果

問題 No.2155 みちらcolor
ユーザー flygonflygon
提出日時 2022-12-09 21:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-14 20:44:50
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
61,696 KB
testcase_01 AC 56 ms
61,440 KB
testcase_02 AC 55 ms
61,184 KB
testcase_03 AC 55 ms
61,440 KB
testcase_04 AC 56 ms
61,184 KB
testcase_05 AC 55 ms
61,440 KB
testcase_06 AC 55 ms
60,928 KB
testcase_07 AC 55 ms
61,056 KB
testcase_08 AC 56 ms
61,568 KB
testcase_09 AC 55 ms
61,696 KB
testcase_10 AC 55 ms
60,928 KB
testcase_11 AC 55 ms
60,928 KB
testcase_12 AC 55 ms
61,312 KB
testcase_13 AC 54 ms
60,544 KB
testcase_14 AC 55 ms
61,568 KB
testcase_15 AC 54 ms
60,928 KB
testcase_16 AC 55 ms
61,056 KB
testcase_17 AC 54 ms
61,056 KB
testcase_18 AC 55 ms
61,824 KB
testcase_19 AC 55 ms
61,568 KB
testcase_20 AC 56 ms
61,696 KB
testcase_21 AC 56 ms
61,824 KB
testcase_22 AC 56 ms
61,568 KB
testcase_23 AC 56 ms
61,568 KB
testcase_24 AC 57 ms
61,952 KB
testcase_25 AC 56 ms
61,568 KB
testcase_26 AC 56 ms
61,696 KB
testcase_27 AC 57 ms
61,568 KB
testcase_28 AC 56 ms
61,824 KB
testcase_29 AC 57 ms
61,568 KB
testcase_30 AC 57 ms
61,440 KB
testcase_31 AC 57 ms
61,824 KB
testcase_32 AC 56 ms
61,440 KB
testcase_33 AC 57 ms
61,696 KB
testcase_34 AC 56 ms
61,696 KB
testcase_35 AC 55 ms
61,440 KB
testcase_36 AC 56 ms
61,696 KB
testcase_37 AC 56 ms
61,824 KB
testcase_38 AC 56 ms
61,568 KB
testcase_39 AC 56 ms
61,696 KB
testcase_40 AC 56 ms
61,696 KB
testcase_41 AC 57 ms
61,696 KB
testcase_42 AC 57 ms
61,824 KB
testcase_43 AC 54 ms
60,800 KB
testcase_44 AC 54 ms
60,800 KB
testcase_45 AC 54 ms
60,672 KB
testcase_46 AC 49 ms
54,656 KB
testcase_47 AC 55 ms
60,672 KB
testcase_48 AC 54 ms
60,800 KB
testcase_49 AC 54 ms
60,800 KB
testcase_50 AC 53 ms
60,928 KB
testcase_51 AC 54 ms
60,928 KB
testcase_52 AC 56 ms
61,056 KB
testcase_53 AC 55 ms
60,928 KB
testcase_54 AC 54 ms
60,928 KB
testcase_55 AC 55 ms
60,544 KB
testcase_56 AC 55 ms
60,800 KB
testcase_57 AC 58 ms
60,928 KB
testcase_58 AC 53 ms
60,928 KB
testcase_59 AC 54 ms
60,672 KB
testcase_60 AC 53 ms
60,800 KB
testcase_61 AC 55 ms
60,928 KB
testcase_62 AC 54 ms
61,056 KB
testcase_63 AC 53 ms
61,056 KB
testcase_64 AC 54 ms
60,800 KB
testcase_65 AC 53 ms
60,928 KB
testcase_66 AC 53 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m,l = map(int,input().split())

dp = [[0]*(1010) for i in range(n+1)]
a = list(map(int,input().split()))
dp[0][l] = 1
for i in range(1, n+1):
  for j in range(1010):
    dp[i][j] |= dp[i-1][j]
    dp[i][(j+a[i-1])//2] |= dp[i-1][j]
  
print('Yes') if dp[-1][m] else print('No')
0