結果

問題 No.2343 (l+r)/2
ユーザー navel_tosnavel_tos
提出日時 2023-06-09 21:20:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,840 KB
最終ジャッジ日時 2024-06-10 12:48:04
合計ジャッジ時間 2,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 46 ms
63,744 KB
testcase_06 AC 43 ms
62,592 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 57 ms
78,592 KB
testcase_12 WA -
testcase_13 AC 49 ms
68,096 KB
testcase_14 AC 62 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder392A

'''
一応挑戦。

んー実験すれば解けないか?
えー わからない ギャグ問だと信じて投げてみる
'''
for _ in range(int(input())):
    N=int(input()); A=list(map(int,input().split()))
    print('Yes') if A[0] or A[-1] else print('No')
0