結果

問題 No.2343 (l+r)/2
ユーザー 👑 chro_96chro_96
提出日時 2023-06-09 23:17:47
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 1,381 ms
コンパイル使用メモリ 28,408 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-30 14:29:21
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 39 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 9 ms
4,376 KB
testcase_05 AC 4 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 9 ms
4,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 12 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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 {
        printf("No\n");
      }
    }
    t--;
  }
  
  return 0;
}
0