結果

問題 No.751 Frac #2
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2018-11-09 21:37:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 166,220 KB
実行使用メモリ 16,968 KB
最終ジャッジ日時 2024-11-21 05:42:47
合計ジャッジ時間 40,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define all(x) (x).begin(),(x).end()
using namespace std;
const int INF=1145141919,MOD=1e9+7;
const long long LINF=8931145141919364364,LMOD=998244353;
// const int dx[]={1,0,-1,0,1,1,-1,-1},dy[]={0,-1,0,1,1,-1,-1,1};

long long gcd(long long x,long long y){
    if(x<y) swap(x,y); //常にx>=y
    //ユークリッドの互除法
    if(!(x%y)) return y;
    else return gcd(y,x%y);
}
int main(){
    long long up=1,down=1;
    int n; cin>>n;
    rep(i,n){
        long long a; cin>>a;
        if(i) down*=a;
        else up*=a;
    }
    cin>>n;
    rep(i,n){
        long long b; cin>>b;
        if(i) up*=b;
        else down*=b;
    }
    long long div=gcd(up,down);
    cout<<up/div<<" "<<down/div<<endl;
    return 0;
}
0