Submission #4028132


Source Code Expand

#pragma once
#include <sstream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iostream>
#include <utility>
#include <set>
#include <cctype>
#include <queue>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <deque>
#include <numeric>
#define M_PI acos(-1)
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int INF = 1000000007;
const int MAX_V = 201;
int now = 0;
int deco[1000];

int st[30][100000];
ll dp[52][2510];
const int MAX = 510000;
const int MOD = 1000000007;

long long fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit() {
	fac[0] = fac[1] = 1;
	finv[0] = finv[1] = 1;
	inv[1] = 1;
	for (int i = 2; i < MAX; i++) {
		fac[i] = fac[i - 1] * i % MOD;
		inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
		finv[i] = finv[i - 1] * inv[i] % MOD;
	}
}

// 二項係数計算
long long COM(int n, int k) {
	if (n < k) return 0;
	if (n < 0 || k < 0) return 0;
	return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}
int B[30];
int t[100010];
struct edge {
	int t;
	ll cost;
	edge(int _t,ll _cost) : t(_t)
							, cost(_cost){
	}
};
int table[15][15];
int n, m;
ll h;

bool use[15];
int ct[15];
bool memo[15][15][15];

ll calc(ll a,ll b,ll c,ll d,ll e) {

	ll sum = a * n;
	ll best = a * n;
	ll volm = b * n + h;
	ll cost = 0;
	for (int i = 0; i < n; i++)
	{
		if ((volm - b) - (cost + e) > 0) {
			volm -= b;
			cost += e;
			sum -= a;
		}
		else {
			ll cs = sum - a + c;
			ll cv = volm - b + d;

			volm = cv;
			sum = cs;
		}

		if(volm > cost)
			best = min(sum, best);
	}

	return best;
}
void Solve() {
	int a, b;
	cin >> a >> b;
	cout << b << " " << a << endl;
	
}
int main() {
	Solve();
	return 0;
}

Submission Info

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

Compile Error

./Main.cpp:1:9: warning: #pragma once in main file
 #pragma once
         ^
./Main.cpp:18:0: warning: "M_PI" redefined
 #define M_PI acos(-1)
 ^
In file included from /usr/include/c++/5/cmath:44:0,
                 from ./Main.cpp:15:
/usr/include/math.h:372:0: note: this is the location of the previous definition
 # define M_PI  3.14159265358979323846 /* pi */
 ^

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