初めてAtcoderに参加して、こちらの問題を解いていたところ、ずっとREから変わらず解けなかったため理由を教えていただきたいです。
私の回答は以下のようになっています。
n = int(input()) list_x = [] for i in range(n): array = list(map(int, input().split())) list_x.append(array) a = list_x[0] b = list_x[1] c = list_x[2] nlist = [] for c_i in c: nlist.append(b[c_i-1]) ans = 0 for a_i in a: ans = ans + nlist.count(a_i) print(str(ans))
どこでエラーが発生しているのでしょうか。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/22 13:57