At coderのABC188のC問題(https://atcoder.jp/contests/abc188/tasks/abc188_c)
を解いたのですがACできません。
python3
1n=int(input()) 2c=list(map(int,input().split())) 3c=a 4b=[] 5while len(a)>2: 6 for i in range(0,len(a)): 7 if i%2!=0: 8 continue 9 else: 10 if a[i]>a[i+1]: 11 b.append(a[i+1]) 12 else: 13 b.append(a[i]) 14 for j in range(len(b)): 15 a.remove(b[j]) 16 b.clear() 17d=sorted(a) 18for m in range(len(c)): 19 if d[0]==c[m]: 20 print(m+1) 21 break
どこを直したらAC出来るのでしょうか。または、https://qiita.com/u2dayo/items/217dad4c9ba3fddd349d
解答のように書かないと出来ないのでしょうか。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/25 08:10
2021/03/25 10:25
2021/03/29 03:10