結果

問題 No.2030 Googol Strings
ユーザー AkariAkari
提出日時 2022-08-05 22:13:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 645 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,420 KB
最終ジャッジ日時 2024-09-15 19:11:33
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
13,588 KB
testcase_01 AC 34 ms
12,340 KB
testcase_02 AC 33 ms
11,964 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 WA -
testcase_05 AC 87 ms
11,784 KB
testcase_06 AC 143 ms
13,440 KB
testcase_07 AC 254 ms
14,416 KB
testcase_08 AC 253 ms
14,420 KB
testcase_09 AC 196 ms
12,424 KB
testcase_10 AC 197 ms
12,460 KB
testcase_11 AC 203 ms
12,440 KB
testcase_12 AC 191 ms
13,512 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 254 ms
14,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys







def main():
    t = int(input())
    Q = sys.stdin.read().split()
    for qi in range(t):
        X = Q[2*qi]
        Y = Q[2*qi+1]
        nx, ny = len(X), len(Y)
        ok = False
        for i in range(max(nx, ny)):
            xi = i if i < nx else i % nx
            yi = i if i < ny else i % ny
            if X[xi] > Y[yi]:
                print('X')
                ok = True
            elif X[xi] < Y[yi]:
                print('Y')
                ok = True
            else:
                continue
            break
        if not ok: print('X' if nx > ny else 'Y')









if __name__ == '__main__':
    main()
0