結果

問題 No.751 Frac #2
ユーザー aaaaaa
提出日時 2018-11-09 21:51:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,037 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 99,016 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 05:52:05
合計ジャッジ時間 1,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <map>
#include <iomanip>
#include <math.h> 
#include <stack>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <tuple>
#include <cctype>
#include <ctype.h>
#include <set>
#include <sstream>

using namespace std;


int main() {
	int i, j;
	int n1, n2;
	vector<double>a, b;


	cin >> n1;

	for (i = 0; i < n1; i++) {
		double num;
		cin >> num;
		a.push_back(num);
	}

	cin >> n2;

	for (i = 0; i < n2; i++) {
		double num;
		cin >> num;
		b.push_back(num);
	}

	double ans1 = 0, ans2 = 0;

	if (n1 == 1) {
		ans1 = a[0];
	}
	else {
		ans1 = a[0];
		for (i = 1; i < n1; i++) {
			//ans1 = a[i] / a[i + 1];
			ans1 = ans1  / a[i];
		}

	}


	if (n2 == 1) {
		ans2 = b[0];
	}
	else {
		ans2 = b[0];
		for (i = 1; i < n2; i++) {
			//ans2 = b[i] / b[i + 1];
			ans2 = ans2 / b[i];
		}

	}

	double ans3 = (ans1 / ans2);

	cout << ans3 << " "  << 1 << endl;









	getchar();
	getchar();
	return 0;
}
0