Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
#define ll long long
void solve() {
ll t;
cin >> t;
while (t--) {
ll n, m, k;
cin >> n >> m >> k;
cout << n+k+m << endl;
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1195 B. Palindrome
- Contest
- Brain Booster #10
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-06-13 17:48:29
- Judged At
- 2025-06-13 17:48:29
- Judged By
- Score
- 0
- Total Time
- 192ms
- Peak Memory
- 1.383 MiB