結果
問題 | No.1369 交換門松列・竹 |
ユーザー | titia |
提出日時 | 2021-01-29 22:15:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,063 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,400 KB |
最終ジャッジ日時 | 2024-06-27 08:29:49 |
合計ジャッジ時間 | 18,873 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | AC | 28 ms
10,880 KB |
testcase_04 | AC | 28 ms
10,880 KB |
testcase_05 | AC | 29 ms
10,880 KB |
testcase_06 | AC | 28 ms
10,880 KB |
testcase_07 | WA | - |
testcase_08 | AC | 28 ms
10,880 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 29 ms
10,880 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 324 ms
15,860 KB |
testcase_16 | AC | 380 ms
15,860 KB |
testcase_17 | AC | 437 ms
15,732 KB |
testcase_18 | AC | 397 ms
15,732 KB |
testcase_19 | AC | 292 ms
15,732 KB |
testcase_20 | WA | - |
testcase_21 | AC | 290 ms
15,728 KB |
testcase_22 | WA | - |
testcase_23 | AC | 386 ms
15,732 KB |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 69 ms
10,752 KB |
testcase_33 | AC | 392 ms
11,648 KB |
ソースコード
def kado(x,y,z): if x==z: return 0 if y<x and y<z: return 1 if y>x and y>z: return 1 return 0 T=int(input()) for tests in range(T): N=int(input()) A=list(map(int,input().split())) NO=[] for i in range(1,N-1): if kado(A[i-1],A[i],A[i+1])==0: NO.extend([i-1,i,i+1]) NO=sorted(set(NO)) flag=0 if len(NO)<=50: for x in NO: if flag==1: break for i in range(N): if flag==1: break if x==i: continue A[x],A[i]=A[i],A[x] for a in NO+list(range(i-2,i+3)): if a<=0 or a>=N-1: continue if kado(A[a-1],A[a],A[a+1])==0: break else: print("Yes") flag=1 break A[x],A[i]=A[i],A[x] if flag==0: print("NO")