Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
91755 |
徐梓涵 |
05等差数列 |
Python3 |
Wrong Answer |
37 MS |
3744 KB |
89 |
2024-09-22 14:33:28 |
Tests(0/10):
Code:
s=input().split()
a=s[0]
b=s[1]
c=s[2]
a=int(a)
b=int(b)
c=int(c)
print((b-a)*c)
Run Info:
------Input------
6 6 2
------Answer-----
6
------Your output-----
0