Submission #1872304


Source Code Expand

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <string>
#include <set>
#define INF 1000000000
using namespace std;
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define LOOP(i,N) for(int i=0;i<N;i++)
#define LOOP1(i,N) for(int i=1;i<=N;i++)
typedef pair<int,int> P;
typedef pair<int,pair<int,int> > PP;
const int MAX_V=100000;
#define int long long
struct edge{int to,cost;};
int V,E;
vector<edge> G[MAX_V];
int d[MAX_V];

signed main(){
  int A,B;
  cin >>A>>B;
  cout <<B<<" "<<A<<endl;
}

Submission Info

Submission Time
Task A - スワップ
User Takeno_hito
Language C++14 (GCC 5.4.1)
Score 100
Code Size 564 Byte
Status AC
Exec Time 2 ms
Memory 2560 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 2 ms 2560 KB
sample_02.txt AC 2 ms 2560 KB
test_13_69.txt AC 2 ms 2560 KB
test_16_44.txt AC 2 ms 2560 KB
test_40_40.txt AC 2 ms 2560 KB
test_49_31.txt AC 2 ms 2560 KB
test_51_74.txt AC 2 ms 2560 KB
test_83_60.txt AC 2 ms 2560 KB