スポンサーリンク 【Python】AtCoder Beginner Contest184 A問題 解答 スポンサーリンク スポンサーリンク Atcoder 2021.07.29 この記事は約1分で読めます。 A問題 Determinant a,b = map(int, input().split()) c,d = map(int, input().split()) print(a*d-b*c) 1234 a,b = map(int, input().split())c,d = map(int, input().split()) print(a*d-b*c)
コメント