結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,328 KB
testcase_01 AC 201 ms
77,696 KB
testcase_02 AC 171 ms
77,952 KB
testcase_03 AC 134 ms
76,672 KB
testcase_04 AC 153 ms
78,080 KB
testcase_05 AC 135 ms
76,832 KB
testcase_06 AC 100 ms
76,544 KB
testcase_07 AC 98 ms
75,904 KB
testcase_08 AC 98 ms
76,544 KB
testcase_09 AC 100 ms
76,544 KB
testcase_10 AC 100 ms
76,160 KB
testcase_11 AC 60 ms
68,736 KB
testcase_12 AC 58 ms
69,632 KB
testcase_13 AC 56 ms
69,504 KB
testcase_14 AC 54 ms
69,120 KB
testcase_15 AC 55 ms
69,376 KB
testcase_16 AC 81 ms
99,712 KB
testcase_17 AC 66 ms
81,664 KB
testcase_18 AC 66 ms
82,048 KB
testcase_19 AC 60 ms
78,208 KB
testcase_20 AC 72 ms
88,192 KB
testcase_21 AC 78 ms
98,304 KB
testcase_22 AC 78 ms
98,048 KB
testcase_23 AC 83 ms
99,584 KB
testcase_24 AC 81 ms
98,048 KB
testcase_25 AC 80 ms
99,328 KB
testcase_26 AC 79 ms
98,816 KB
testcase_27 AC 78 ms
99,072 KB
testcase_28 AC 79 ms
99,328 KB
権限があれば一括ダウンロードができます

ソースコード

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