結果

問題 No.751 Frac #2
ユーザー U-ArU-Ar
提出日時 2018-11-23 14:42:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,310 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 56,844 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-06 23:15:02
合計ジャッジ時間 1,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
using namespace std;

int a[10];
int b[10];

int afact[11];//0番目の要素は符号判定
int bfact[11];

void dcmp(int n, int* list){
    if (n < 0){
        list[0]++;
        n *= -1;
    }
    for (int i = 2; i < 10; i++){
        while (n % i == 0){
            n /= i;
            list[i]++;
        }
    }
}

int main() {
    for (int i = 0; i < 11; i++){
        afact[i] = 0;
        bfact[i] = 0;
    }
    int n1, n2;
    int tmp;

    cin >> n1;
    for (int i = 0; i < n1; i++)
        cin >> a[i];

    
    cin >> n2;
    for (int i = 0; i < n2; i++)
        cin >> b[i];
    
    dcmp(a[0],afact);
    for (int i = 1; i < n1; i++)
        dcmp(a[i],bfact);
    for (int i = 0; i < n2; i++)
        if (i % 2 == 0)
            dcmp(b[i],bfact);
        else 
            dcmp(b[i],afact);
    
    int child = 1;
    int mother = 1;
    if ((afact[0] - bfact[0]) % 2 != 0)
        child *= -1;
    for (int i = 2; i < 11; i++){
        if (afact[i] > bfact[i]){
            for (int j = 0; j < afact[i]-bfact[i]; j++){
                child *= i;
            }
        }
        else if (afact[i] < bfact[i]){
            for (int j = 0; j < bfact[i]-afact[i]; j++){
                mother *= i;
            }
        }
    }
    cout << child << " " << mother << "\n";

}
0