結果
問題 | No.2343 (l+r)/2 |
ユーザー | chro_96 |
提出日時 | 2023-06-09 23:09:08 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 894 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 14:17:12 |
合計ジャッジ時間 | 1,642 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 37 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 6 ms
5,376 KB |
testcase_14 | WA | - |
ソースコード
#include <stdio.h> int main () { int t = 0; int n = 0; int a[200000] = {}; int res = 0; res = scanf("%d", &t); while (t > 0) { int flag[2] = {}; res = scanf("%d", &n); for (int i = 0; i < n; i++) { res = scanf("%d", a+i); flag[a[i]] = 1; } if (flag[0] <= 0 || flag[1] <= 0) { printf("No\n"); } else if (a[0] != a[n-1]) { printf("Yes\n"); } else { int is_ok = 0; int l = 0; int r = n-1; while (a[l] == a[0]) { l++; } while (a[r] == a[n-1]) { r--; } for (int i = l; i < r; i++) { if (a[i] == a[i+1]) { is_ok = 1; } } if (is_ok > 0) { printf("Yes\n"); } else { printf("No\n"); } } t--; } return 0; }