Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113615 王镜铭 05等差数列 C++ Accepted 1 MS 272 KB 150 2025-03-16 11:24:56

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ long long a,b,c,d; cin>>a>>b>>c; d=b-a; cout<<a+(c-1)*d; return 0; }