답안 #975205

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
975205 2024-05-04T14:47:25 Z ziewacz XOR Sum (info1cup17_xorsum) C++17
7 / 100
106 ms 131072 KB
#include <bits/stdc++.h>
#define debug(x...) cerr << "[" #x "]: ", [](auto... $) {((cerr << $ << "; "), ...); }(x), cerr << '\n'
using namespace std;
typedef long long ll;
typedef long double ld;
constexpr int MOD = 1000000007;


int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0);
    
    int n;
    cin >> n;
    vector<int> a(n);
    for(int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> sumy;
    for(int i = 0; i < n; i++) {
        for(int j = i; j < n; j++) {
            sumy.push_back(a[i] + a[j]);
        }
    }
    int ans = sumy[0];
    for(int i = 1; i < sumy.size(); i++) {
        ans ^= sumy[i];
    }
    cout << ans;
    return 0;
}

Compilation message

xorsum.cpp: In function 'int main()':
xorsum.cpp:26:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |     for(int i = 1; i < sumy.size(); i++) {
      |                    ~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 25 ms 34756 KB Output is correct
2 Correct 28 ms 35500 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 106 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 106 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 25 ms 34756 KB Output is correct
2 Correct 28 ms 35500 KB Output is correct
3 Runtime error 62 ms 131072 KB Execution killed with signal 9
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 25 ms 34756 KB Output is correct
2 Correct 28 ms 35500 KB Output is correct
3 Runtime error 106 ms 131072 KB Execution killed with signal 9
4 Halted 0 ms 0 KB -