結果

問題 No.2518 Adjacent Larger
ユーザー なえしらなえしら
提出日時 2024-04-21 15:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-10-13 13:49:48
合計ジャッジ時間 4,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(T := int(input())):
  N = int(input())
  A = list(map(int, input().split()))

  memo = 1
  for a in A*2:
    if a == 1:
      continue
    if a == memo:
      print("No")
      break
    memo = a
  else:
    print("No" if memo == 1 else "Yes")
0