結果

問題 No.2343 (l+r)/2
ユーザー ニックネームニックネーム
提出日時 2023-06-09 21:43:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,964 KB
最終ジャッジ日時 2024-06-10 13:07:06
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 1,639 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 56 ms
12,824 KB
testcase_05 AC 36 ms
11,316 KB
testcase_06 AC 35 ms
11,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 51 ms
12,576 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 59 ms
12,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input())
    a = list(map(int,input().split()))
    ans = "Yes" if a[0]!=a[-1] else "No"
    b = [i for i in range(n) if a[i]!=a[0]]
    for i in range(len(b)-1):
        if b[i]+1==b[i+1]: ans = "Yes"
    print(ans)
0