NC216116. K蝴蝶
描述
输入描述
一行中输入两个整数a, b(-9999 <= a <= b <= 9999),表示今生往世的记忆量
输出描述
输出一个整数c,表示今生与往世的记忆量的差值
示例1
输入:
2020 1906
输出:
114
pypy3(pypy3.6.1) 解法, 执行用时: 35ms, 内存消耗: 18672K, 提交时间: 2020-12-30 10:18:36
a,c=map(int, input().split()) print(a-c)
Python3(3.9) 解法, 执行用时: 16ms, 内存消耗: 2808K, 提交时间: 2020-12-30 10:02:17
a,b=map(int,input().split()) print(a-b)