⌨️[AtCoder]ABC-148|B - Strings with the Same Length2023/02/26に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-148 B - Strings with the Same Length 提出結果 def getInt(): return int(input()) def getStringMap(): return input().split() def main(): n = getInt() s, t = getStringMap() a = '' for i in range(n): a += (s[i] + t[i]) print(a) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion