Submission #3621124


Source Code Expand

#include <iostream>
#include <iomanip>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <cmath>
#include <algorithm>
#include <iterator>
#define r(i,n) for(int i=0;i<n;i++)
#define R(i,c,n) for(int i=c;i<n;i++)
#define DEBUG(x) cerr << #x << ": " << x << endl;
#define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;}
#define ALL(v) v.begin(),v.end()
#define UNIQUE(v)  sort(ALL(v));v.erase(unique(ALL(v)),v.end());
#define pb push_back
using namespace std;
const int dx[] = {1, -1, 0, 0};
const int dy[] = {0, 0, -1, 1};
const double PI = 3.14159265358979323846;

bool check(int *ng, int n) {
  return n==ng[0] || n==ng[1] || n==ng[2];
}

int main(){
  ios::sync_with_stdio(false);
	cin.tie(0);
  int a,b;
  cin >> a >> b;
  cout << b << a;
  return 0;
}

Submission Info

Submission Time
Task A - スワップ
User unipota
Language C++14 (GCC 5.4.1)
Score 0
Code Size 915 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
WA × 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 WA 1 ms 256 KB
sample_02.txt WA 1 ms 256 KB
test_13_69.txt WA 1 ms 256 KB
test_16_44.txt WA 1 ms 256 KB
test_40_40.txt WA 1 ms 256 KB
test_49_31.txt WA 1 ms 256 KB
test_51_74.txt WA 1 ms 256 KB
test_83_60.txt WA 1 ms 256 KB