結果

問題 No.2343 (l+r)/2
ユーザー chro_96chro_96
提出日時 2023-06-09 23:51:14
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 25,856 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 06:06:30
合計ジャッジ時間 1,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int t = 0;
  int n = 0;
  int a[200000] = {};
  
  int res = 0;
  
  res = scanf("%d", &t);
  while (t > 0) {
    res = scanf("%d", &n);
    for (int i = 0; i < n; i++) {
      res = scanf("%d", a+i);
    }
    if (a[0] != a[n-1]) {
      printf("Yes\n");
    } else {
      int is_ok = 0;
      for (int i = 1; i < n-2; i++) {
        if (a[i] == a[i+1] && a[i] != a[0]) {
          is_ok = 1;
        }
      }
      if (is_ok > 0) {
        printf("Yes\n");
      } else {
        int cnt = 0;
        for (int i = 0; i < n-1; i++) {
          if (a[i] != a[i+1]) {
            cnt++;
          }
        }
        if (cnt > 7) {
          printf("Yes\n");
        } else {
          printf("No\n");
        }
      }
    }
    t--;
  }
  
  return 0;
}
0