結果

問題 No.2030 Googol Strings
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-08-06 02:06:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 948 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 204,044 KB
実行使用メモリ 7,056 KB
最終ジャッジ日時 2024-09-15 23:39:12
合計ジャッジ時間 3,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
5,248 KB
testcase_01 AC 20 ms
5,376 KB
testcase_02 AC 16 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 34 ms
5,916 KB
testcase_07 AC 46 ms
7,056 KB
testcase_08 AC 45 ms
7,056 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 45 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 46 ms
5,376 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int solve(string& s, string& t) {
    if (s == t) {
        return 0;
    }
    if (s.size() > t.size()) {
        return solve(t, s) * -1;
    }
    for (int i = 0; i < t.size() / s.size(); i ++) {
        if (s != t.substr(i * s.size(), s.size())) {
            return (s > t.substr(i * s.size(), s.size()) ? 1 : -1);
        }
    }
    int l = t.size() % s.size();
    if (l == 0) {
        return 0;
    }
    t = s.substr(0, l) + s.substr(0, s.size() - l);
    if (s != t) {
        return (s > t ? 1 : -1);
    }
    t = t.substr(0, l);
    return solve(t, s);
}
int main() {
    int T;
    cin >> T;
    for (int t = 0; t < T; t ++) {
        string x, y;
        cin >> x >> y;
        bool lg = x.size() > y.size();
        int r = solve(x, y);
        if (r) {
            cout << (r > 0 ? "X" : "Y") << endl;
        } else {
            cout << (lg ? "X" : "Y") << endl;
        }
    }
}
0