結果

問題 No.2030 Googol Strings
ユーザー HIcoderHIcoder
提出日時 2024-10-06 20:11:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,460 bytes
コンパイル時間 1,146 ms
コンパイル使用メモリ 120,144 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-06 20:11:50
合計ジャッジ時間 7,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,496 KB
testcase_01 AC 20 ms
5,248 KB
testcase_02 AC 17 ms
5,248 KB
testcase_03 AC 8 ms
5,248 KB
testcase_04 AC 35 ms
5,248 KB
testcase_05 AC 18 ms
5,248 KB
testcase_06 AC 42 ms
6,140 KB
testcase_07 AC 61 ms
7,268 KB
testcase_08 AC 61 ms
7,272 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

const int MAX=1000000;

char solve(){
    string x,y;
    cin>>x;
    cin>>y;

    bool overlap=true;
    {
        string cX=x,cY=y;
        if(cX.size()>cY.size()){
            swap(cX,cY);
        }
        //cX<=cY
        if(cY.size()%cX.size()==0){
            for(int i=0;i<cY.size();i++){
                if(cY[i]!=cX[i%cX.size()]){
                    overlap=false;
                    break;
                }
            }
        }else{
            overlap=false;
        }
    }
    if(overlap){
        if(x.size()>y.size()){
            return 'X';
        }else{
            return 'Y';
        }
    }

    int lenx=x.size();
    int leny=y.size();
    for(int i=0;i<MAX;i++){
        if(x[i%lenx]!=y[i%leny]){
            if(x[i%lenx]>y[i%leny]){
                return 'X';
            }else{
                return 'Y';
            }
        }
    }
    return 'X';

}

int main(){
    int T;
    cin>>T;
    vector<char> ans(T);
    for(int t=0;t<T;t++){
        ans[t]=solve();
    }

    for(int t=0;t<T;t++){
        cout<<ans[t]<<endl;
    }

}
0