結果

問題 No.2056 非力なレッド
ユーザー tassei903tassei903
提出日時 2022-08-26 21:51:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-10-13 22:25:06
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 WA -
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 85 ms
90,240 KB
testcase_14 AC 74 ms
89,344 KB
testcase_15 AC 78 ms
89,344 KB
testcase_16 AC 48 ms
61,824 KB
testcase_17 AC 65 ms
79,872 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
97,024 KB
testcase_21 WA -
testcase_22 AC 77 ms
89,472 KB
testcase_23 AC 71 ms
85,504 KB
testcase_24 AC 58 ms
72,320 KB
testcase_25 AC 84 ms
97,408 KB
testcase_26 AC 90 ms
101,760 KB
testcase_27 AC 86 ms
97,536 KB
testcase_28 AC 102 ms
101,760 KB
testcase_29 AC 105 ms
101,888 KB
testcase_30 WA -
testcase_31 AC 104 ms
102,144 KB
testcase_32 AC 103 ms
101,888 KB
testcase_33 WA -
testcase_34 AC 105 ms
102,016 KB
testcase_35 AC 105 ms
101,760 KB
testcase_36 AC 106 ms
101,760 KB
testcase_37 AC 109 ms
101,888 KB
testcase_38 AC 38 ms
51,712 KB
testcase_39 AC 39 ms
52,224 KB
testcase_40 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################[
n,x,m = na()
a = na()
for i in range(min(n, m)):
    a[i] //= 2

if max(a) < x:
    Yes()
else:
    No()
0