竞赛
考级
题目分析 输入三个整数,计算输出即可。 AC代码 复杂度 O(1)O(1)O(1)
AC君
时间复杂度:O(1)O(1)O(1)
复仇者_帅童
#include<iostream> #include <algorithm> #include <bits/stdc++.h> #include <math.h> #include <cmath> #include<string> #include<cstring> #include<list> #include<map> #include<queue> #include<iterator> #include<stack> using namespace std; int main(){ int A,B,C; cin >>A>>B>>C; cout <<A+B+C; return 0; }
这是名字
a,b,c=map(int,input().split()) print(a+b+c)
M2B
yh26zhuenaf
有事找大号
毛奕程
zsy
#include <iostream> using namespace std; int main() { long long a,b,c,cnt = 0; cin >> a >> b >> c; cnt = a + b + c; cout << cnt; return 0; }
阿基米哲V(^-^)V
lianhw
提交答案之后,这里将显示提交结果~