/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 560.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

int main()
{

    int T;
    cin>>T;


    while(T--)
    {
        int n,m,k;
        cin>>n>>m>>k;
        cout<<n+m+k<<endl;

    }
}

Information

Submit By
Type
Pretest
Problem
P1195 B. Palindrome
Language
C++17 (G++ 13.2.0)
Submit At
2025-06-13 16:28:31
Judged At
2025-06-13 16:28:31
Judged By
Score
10
Total Time
1ms
Peak Memory
560.0 KiB