NC19284. 绝地求生(pubg)
描述
输入描述
输出描述
示例1
输入:
1 4 6
输出:
Case 1: 12
示例2
输入:
2 2147483647 2147483648 10000007 531233
输出:
Case 1: 4611686016279904256 Case 2: 5312333718631
pypy3(pypy3.6.1) 解法, 执行用时: 834ms, 内存消耗: 30140K, 提交时间: 2020-10-29 20:03:05
import math for i in range(int(input())): x,y = map(int,input().split()) print("Case "+str(i+1)+":",x*y//math.gcd(x,y))
Python3 解法, 执行用时: 1343ms, 内存消耗: 7532K, 提交时间: 2022-12-26 15:34:08
from math import * n=int(input()) for i in range(n): a,b=map(int,input().split()) print('Case %d: %d'%(i+1,lcm(a,b)))