Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define endl '\n'
#define ll long long
#define vi vector<ll>
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rep(i, a, b) for(ll i = (a); i < (b); i++)
#define print(v) for(auto e:v) cout<<e<<" "; cout<<endl;
void solve (ll t){
ll n,m,k;cin>>n>>m>>k;
cout<<(n+m+k)<<endl;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
ll t=1;cin>>t;
for(int i=1;i<=t;i++){
solve(i);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1195 B. Palindrome
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-06-14 07:42:07
- Judged At
- 2025-06-14 07:42:07
- Judged By
- Score
- 0
- Total Time
- 35ms
- Peak Memory
- 1.562 MiB