結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 43 ms
52,224 KB
testcase_11 WA -
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 91 ms
89,856 KB
testcase_14 AC 72 ms
89,720 KB
testcase_15 AC 70 ms
89,728 KB
testcase_16 AC 44 ms
62,408 KB
testcase_17 AC 62 ms
80,636 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 80 ms
97,408 KB
testcase_21 WA -
testcase_22 AC 71 ms
89,984 KB
testcase_23 AC 67 ms
85,772 KB
testcase_24 AC 55 ms
72,784 KB
testcase_25 AC 79 ms
97,920 KB
testcase_26 AC 82 ms
102,364 KB
testcase_27 AC 78 ms
97,968 KB
testcase_28 AC 100 ms
101,880 KB
testcase_29 AC 99 ms
101,936 KB
testcase_30 WA -
testcase_31 AC 98 ms
102,160 KB
testcase_32 AC 98 ms
102,112 KB
testcase_33 WA -
testcase_34 AC 101 ms
102,188 KB
testcase_35 AC 99 ms
101,984 KB
testcase_36 AC 99 ms
101,932 KB
testcase_37 AC 99 ms
102,180 KB
testcase_38 AC 38 ms
52,804 KB
testcase_39 AC 37 ms
52,920 KB
testcase_40 AC 37 ms
52,196 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