結果

問題 No.2155 みちらcolor
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-12-10 20:55:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-10-14 23:55:33
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,816 KB
testcase_01 AC 56 ms
65,280 KB
testcase_02 AC 53 ms
64,384 KB
testcase_03 AC 56 ms
64,128 KB
testcase_04 AC 55 ms
64,384 KB
testcase_05 AC 58 ms
65,408 KB
testcase_06 AC 55 ms
62,976 KB
testcase_07 AC 54 ms
62,592 KB
testcase_08 AC 56 ms
65,152 KB
testcase_09 AC 58 ms
65,536 KB
testcase_10 AC 56 ms
63,360 KB
testcase_11 AC 55 ms
63,488 KB
testcase_12 AC 58 ms
65,280 KB
testcase_13 AC 48 ms
54,912 KB
testcase_14 AC 58 ms
66,048 KB
testcase_15 AC 50 ms
55,296 KB
testcase_16 AC 58 ms
63,488 KB
testcase_17 AC 55 ms
61,824 KB
testcase_18 AC 57 ms
65,024 KB
testcase_19 AC 57 ms
65,408 KB
testcase_20 AC 58 ms
66,432 KB
testcase_21 AC 58 ms
66,944 KB
testcase_22 AC 58 ms
65,408 KB
testcase_23 AC 57 ms
65,408 KB
testcase_24 AC 57 ms
66,944 KB
testcase_25 AC 57 ms
66,944 KB
testcase_26 AC 59 ms
66,560 KB
testcase_27 AC 60 ms
66,688 KB
testcase_28 AC 57 ms
66,048 KB
testcase_29 AC 57 ms
65,664 KB
testcase_30 AC 58 ms
66,176 KB
testcase_31 AC 57 ms
66,304 KB
testcase_32 AC 60 ms
66,304 KB
testcase_33 AC 57 ms
66,304 KB
testcase_34 AC 60 ms
66,304 KB
testcase_35 AC 59 ms
66,176 KB
testcase_36 AC 59 ms
66,048 KB
testcase_37 AC 60 ms
66,944 KB
testcase_38 AC 60 ms
66,176 KB
testcase_39 AC 63 ms
66,560 KB
testcase_40 AC 61 ms
68,352 KB
testcase_41 AC 59 ms
67,328 KB
testcase_42 AC 51 ms
61,696 KB
testcase_43 AC 47 ms
54,912 KB
testcase_44 AC 49 ms
55,168 KB
testcase_45 AC 47 ms
54,784 KB
testcase_46 AC 48 ms
55,040 KB
testcase_47 AC 51 ms
61,952 KB
testcase_48 AC 53 ms
62,208 KB
testcase_49 AC 47 ms
55,168 KB
testcase_50 AC 53 ms
62,336 KB
testcase_51 AC 54 ms
62,208 KB
testcase_52 AC 55 ms
61,824 KB
testcase_53 AC 53 ms
61,952 KB
testcase_54 AC 54 ms
62,080 KB
testcase_55 AC 50 ms
55,680 KB
testcase_56 AC 54 ms
61,824 KB
testcase_57 AC 47 ms
54,912 KB
testcase_58 AC 49 ms
55,680 KB
testcase_59 AC 48 ms
55,040 KB
testcase_60 AC 52 ms
55,040 KB
testcase_61 AC 47 ms
55,040 KB
testcase_62 AC 54 ms
61,824 KB
testcase_63 AC 54 ms
61,952 KB
testcase_64 AC 54 ms
61,824 KB
testcase_65 AC 48 ms
54,912 KB
testcase_66 AC 55 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,M,L = map(int,input().split())
A = list(map(int,input().split()))

X = defaultdict(lambda:False)
X[L]=True
for i in range(N):
    a = A[i]
    Y = []
    for k in X.keys():
        
        tmp = (k+a)//2
        Y.append(tmp)
    for y in Y:
        X[y]=True
if X[M]:
    print('Yes')
else:
    print('No')
0