結果

問題 No.2056 非力なレッド
ユーザー rlangevinrlangevin
提出日時 2023-01-10 23:07:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 102,484 KB
最終ジャッジ日時 2024-06-01 08:03:08
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,408 KB
testcase_01 AC 42 ms
52,756 KB
testcase_02 AC 41 ms
52,360 KB
testcase_03 AC 41 ms
52,612 KB
testcase_04 AC 38 ms
53,312 KB
testcase_05 AC 39 ms
52,180 KB
testcase_06 AC 40 ms
52,276 KB
testcase_07 AC 39 ms
52,696 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 39 ms
52,868 KB
testcase_10 AC 37 ms
52,792 KB
testcase_11 AC 38 ms
51,876 KB
testcase_12 AC 36 ms
52,884 KB
testcase_13 AC 70 ms
90,328 KB
testcase_14 AC 73 ms
89,984 KB
testcase_15 AC 74 ms
90,140 KB
testcase_16 AC 43 ms
61,860 KB
testcase_17 AC 61 ms
81,680 KB
testcase_18 AC 44 ms
61,812 KB
testcase_19 AC 47 ms
63,832 KB
testcase_20 AC 76 ms
97,296 KB
testcase_21 AC 50 ms
67,780 KB
testcase_22 AC 69 ms
90,480 KB
testcase_23 AC 65 ms
87,392 KB
testcase_24 AC 54 ms
74,224 KB
testcase_25 AC 77 ms
99,140 KB
testcase_26 AC 80 ms
102,484 KB
testcase_27 AC 78 ms
98,644 KB
testcase_28 AC 97 ms
101,812 KB
testcase_29 AC 96 ms
101,784 KB
testcase_30 AC 98 ms
101,988 KB
testcase_31 AC 95 ms
102,036 KB
testcase_32 AC 96 ms
101,788 KB
testcase_33 AC 97 ms
101,988 KB
testcase_34 AC 97 ms
101,872 KB
testcase_35 AC 97 ms
101,780 KB
testcase_36 AC 95 ms
102,248 KB
testcase_37 AC 96 ms
101,856 KB
testcase_38 AC 37 ms
51,696 KB
testcase_39 AC 38 ms
52,260 KB
testcase_40 AC 37 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, M = map(int, input().split())
A = list(map(int, input().split()))
for i in range(N - 1, -1, -1):
    while A[i] >= X:
        for j in range(i + 1):
            A[j] //= 2
        M -= i + 1
        if M < 0:
            print("No")
            exit()
print("Yes")    
0