結果

問題 No.2155 みちらcolor
ユーザー RuteRute
提出日時 2022-12-11 02:51:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-04-23 03:00:05
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
11,648 KB
testcase_01 AC 90 ms
11,520 KB
testcase_02 AC 74 ms
11,648 KB
testcase_03 AC 85 ms
11,520 KB
testcase_04 AC 80 ms
11,520 KB
testcase_05 AC 100 ms
11,520 KB
testcase_06 AC 62 ms
11,520 KB
testcase_07 AC 52 ms
11,648 KB
testcase_08 AC 92 ms
11,648 KB
testcase_09 AC 98 ms
11,648 KB
testcase_10 AC 70 ms
11,648 KB
testcase_11 AC 69 ms
11,648 KB
testcase_12 AC 91 ms
11,520 KB
testcase_13 AC 39 ms
11,520 KB
testcase_14 AC 95 ms
11,520 KB
testcase_15 AC 40 ms
11,520 KB
testcase_16 AC 69 ms
11,648 KB
testcase_17 AC 46 ms
11,520 KB
testcase_18 AC 91 ms
11,648 KB
testcase_19 AC 95 ms
11,520 KB
testcase_20 AC 113 ms
11,648 KB
testcase_21 AC 117 ms
11,648 KB
testcase_22 AC 104 ms
11,520 KB
testcase_23 AC 100 ms
11,520 KB
testcase_24 AC 114 ms
11,520 KB
testcase_25 AC 128 ms
11,648 KB
testcase_26 AC 113 ms
11,520 KB
testcase_27 AC 120 ms
11,648 KB
testcase_28 AC 108 ms
11,520 KB
testcase_29 AC 108 ms
11,520 KB
testcase_30 AC 105 ms
11,520 KB
testcase_31 AC 115 ms
11,520 KB
testcase_32 AC 106 ms
11,520 KB
testcase_33 AC 114 ms
11,648 KB
testcase_34 AC 110 ms
11,520 KB
testcase_35 AC 106 ms
11,520 KB
testcase_36 AC 106 ms
11,520 KB
testcase_37 AC 113 ms
11,520 KB
testcase_38 AC 102 ms
11,520 KB
testcase_39 AC 119 ms
11,520 KB
testcase_40 AC 115 ms
11,648 KB
testcase_41 AC 117 ms
11,648 KB
testcase_42 AC 100 ms
11,520 KB
testcase_43 AC 42 ms
11,648 KB
testcase_44 AC 39 ms
11,520 KB
testcase_45 AC 38 ms
11,648 KB
testcase_46 AC 35 ms
11,648 KB
testcase_47 AC 50 ms
11,648 KB
testcase_48 AC 46 ms
11,520 KB
testcase_49 AC 36 ms
11,520 KB
testcase_50 AC 47 ms
11,648 KB
testcase_51 AC 46 ms
11,520 KB
testcase_52 AC 46 ms
11,648 KB
testcase_53 AC 47 ms
11,648 KB
testcase_54 AC 45 ms
11,520 KB
testcase_55 AC 38 ms
11,520 KB
testcase_56 AC 46 ms
11,520 KB
testcase_57 AC 42 ms
11,648 KB
testcase_58 AC 42 ms
11,520 KB
testcase_59 AC 38 ms
11,520 KB
testcase_60 AC 40 ms
11,648 KB
testcase_61 AC 41 ms
11,520 KB
testcase_62 AC 45 ms
11,648 KB
testcase_63 AC 43 ms
11,648 KB
testcase_64 AC 44 ms
11,648 KB
testcase_65 AC 37 ms
11,520 KB
testcase_66 AC 42 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, L = map(int,input().split())
A = [0] + list(map(int,input().split()))
#dp[i][j] = i番目の色までで色jを作ることが出来るか
dp = [[0 for x in range(1010)] for y in range(110)]
dp[0][L] = 1
for x in range(1, N + 1):
  for y in range(1010):
    dp[x][y] = max(dp[x][y], dp[x-1][y])
    if dp[x-1][y] == 1:
      C = (y + A[x]) // 2
      dp[x][C] = 1
if dp[N][M] == 1:
  print("Yes")
else:
  print("No")
0