Submission #1679418


Source Code Expand

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

void swap(int &x, int &y){
    int temp;
    temp = x;
    x = y;
    y = temp;
}

int main(){
    int a, b;
    cin >> a >> b;
    swap(a, b);
    cout << a << ' ' << b << endl;
}

Submission Info

Submission Time
Task A - スワップ
User Capibaara
Language C++14 (GCC 5.4.1)
Score 100
Code Size 241 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 8
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_13_69.txt, test_16_44.txt, test_40_40.txt, test_49_31.txt, test_51_74.txt, test_83_60.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
test_13_69.txt AC 1 ms 256 KB
test_16_44.txt AC 1 ms 256 KB
test_40_40.txt AC 1 ms 256 KB
test_49_31.txt AC 1 ms 256 KB
test_51_74.txt AC 1 ms 256 KB
test_83_60.txt AC 1 ms 256 KB