結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
5,248 KB
testcase_01 AC 20 ms
5,248 KB
testcase_02 AC 17 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 21 ms
5,248 KB
testcase_06 AC 42 ms
6,268 KB
testcase_07 AC 60 ms
7,396 KB
testcase_08 AC 60 ms
7,264 KB
testcase_09 AC 28 ms
5,248 KB
testcase_10 AC 29 ms
5,248 KB
testcase_11 AC 28 ms
5,248 KB
testcase_12 AC 45 ms
5,248 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 58 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    {
        /*
        
        xyzxyzxyz
        xyzxyz

        */
        string cX=x,cY=y;
        if(cX.size()>cY.size()){
            swap(cX,cY);
        }
        //cX<=cY
        for(int i=0;i<cY.size();i++){
            if(cY[i]!=cX[i%cX.size()]){
                overlap=false;
                break;
            }
        }
        
    }
    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