2024-03-23から1日間の記事一覧

ABC346 python Atcoderの記録

問題はこちら 4完 A 愚直実装 N = int(input()) # S = input() A = list(map(int, input().split())) result = [] for i in range(N-1): result.append(A[i]*A[i+1]) print(*result) B 条件を満たす文字列があると仮定したとき、その文字列が12文字以上であ…