結果

問題 No.751 Frac #2
ユーザー asdf1asdf1
提出日時 2018-11-09 22:00:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,607 bytes
コンパイル時間 1,198 ms
コンパイル使用メモリ 160,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 04:49:27
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
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 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
const int INF=1e9,MOD=1e9+7,ohara=1e6;
const ll LINF=1e18;
using namespace std;

#define rep(i,n) for(ll (i)=0;(i)<(int)(n);(i)++)
#define rrep(i,a,b) for(ll i=(a);i<(b);i++)
#define rrrep(i,a,b) for(ll i=(a);i>=(b);i--)
#define all(v) (v).begin(), (v).end()
#define pb(q) push_back(q)
#define Size(n) (n).size()
#define Cout(x) cout<<(x)<<endl

ll n,cnt=0,ans=0,a[ohara],b[ohara],c,d,cmp,cmpp,m,h,w,x,y,sum=0,pos;
int dy[]={1,0,-1,0};
int dx[]={0,1,0,-1};
//int dy[]={-1,0,1,-1,1,-1,0,1};
//int dx[]={-1,-1,-1,0,0,1,1,1};
string alph("abcdefghijklmnopqrstuvwxyz"),s;
bool fl;
struct edge{int to,cost;};

//-------------------------↓↓↓↓↓↓------------------------

int main(void){
    cin>>n;
    rep(i,n)cin>>a[i];
    cin>>m;
    rep(i,m)cin>>b[i];
    double want,wantup,wantdo;
    wantup=(double)a[0];
    rrep(i,1,n){
        wantup=wantup/(double)a[i];
    }
    wantdo=(double)b[0];
    rrep(i,1,m){
        wantdo=wantdo/(double)b[i];
    }
    want=wantup/wantdo;
    /*
    printf("%.15f\n",wantup);
    printf("%.15f\n",wantdo);
    printf("%.15f\n",want);
    printf("%.15f\n",(double)5/72);
    */
    rrep(i,1,1000){
        rrep(j,1,1000){
            if(i==0||j==0)continue;
            double now=(double)i/j;
            //cout<<i<<" "<<j<<" "<<(double)i/j<<" "<<want<<"\n";
            if(now==want){
                cout<<i<<" "<<j<<"\n";
                return 0;
            }
            if(now*-1.0==want){
                cout<<i*-1.0<<" "<<j<<"\n";
                return 0;
            }
        }
    }

    return 0;
}
0