結果

問題 No.2155 みちらcolor
ユーザー chro_96chro_96
提出日時 2022-12-09 21:33:24
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 20:40:06
合計ジャッジ時間 1,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int n = 0;
  int m = 0;
  int l = 0;
  int a = 0;
  
  int res = 0;
  
  int ans[1001] = {};
  
  res = scanf("%d", &n);
  res = scanf("%d", &m);
  res = scanf("%d", &l);
  ans[l] = 1;
  for (int i = 0; i < n; i++) {
    res = scanf("%d", &a);
    for (int j = a+1; j <= 1000; j++) {
      if (ans[j] > 0) {
        ans[(j+a)/2] = 1;
      }
    }
    for (int j = a-1; j > 0; j--) {
      if (ans[j] > 0) {
        ans[(j+a)/2] = 1;
      }
    }
  }
  
  if (ans[m] > 0) {
    printf("Yes\n");
  } else {
    printf("No\n");
  }
  
  return 0;
}
0