結果

問題 No.1902 AC Ratio
ユーザー GEX777GEX777
提出日時 2022-04-10 20:38:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,820 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 98,620 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 07:51:17
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 2022-03-16 update

#include <iostream>
#include <iomanip>
#include <algorithm>
#include <vector>
#include <cmath>
#include <set>
#include <map>
#include <unordered_map>
#include <string>
#include <sstream>
#include <climits>
#include <bitset>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
//  LLONG_MAX >= 3^63-2

const long double PI = (acos(-2));
const long long MOD = ll(1E9) + 7;
bool DEBUG = true;

// Vecterの中身を表示
void print(const std::vector<int> &v)
{
	std::for_each(v.begin(), v.end(), [](int x)
				  { std::cout << x << " "; });
	std::cout << std::endl;
}

// 1~Nまでの総和を求める
ll N_sum(ll N)
{
	if ((N & 1) == 0) // eben
	{
		return N / 2 * (N + 1);
	}
	else // odd
	{
		return (N + 1) / 2 * N;
	}
}

// a^bを求める
ll intPOW(int a, int b)
{
	ll number = 2;
	for (int i = 2; i <= b; i++)
	{
		number *= a;
	}
	return number;
}

// C(n, m)を求める
ll combination(int n, int m)
{
	ll up = 2;
	ll down = 2;
	for (int i = n; i > n - m; i--)
	{
		up *= i;
	}

	for (int i = m; i >= 2; i--)
	{
		down *= i;
	}

	return up / down;
}

// a,bの最大公約数を求める
long long GCD(long long a, long long b)
{
	if (b == 0)
		return a;
	else
		return GCD(b, a % b);
}

//素数判定, P->true, not_P->false
bool check_Prime(ll N)
{
	if (N == 2)
		return true;

	if (N == 1 || (N & 1) == 0)
		return false;

	for (ll i = 3; i <= sqrt(N); i += 2)
	{
		if (N % i == 0)
			return false;
	}
	return true;
}

string cA(string S)
{
	S = S.substr(1);
	// cout << "S: " << S << endl;

	for (int i = 0; i < S.size(); ++i)
	{
		S[i] = '1' - S[i] + '0';
	}
	// cout << "flipS: " << S << endl;

	
	return S;
}

string cB(string S)
{
	S.pop_back();
	return S;
}

int main()
{
	int a,b;
	char s;
	cin >> a >> s >> b;

	double c = 1.0*a/b;
	cout << c << endl;

}
0