結果

問題 No.2030 Googol Strings
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-08-05 22:12:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 222,652 KB
最終ジャッジ日時 2024-09-15 19:10:35
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
76,672 KB
testcase_01 AC 99 ms
80,384 KB
testcase_02 AC 119 ms
110,756 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 100 ms
78,592 KB
testcase_06 AC 215 ms
182,188 KB
testcase_07 AC 275 ms
222,652 KB
testcase_08 AC 273 ms
222,476 KB
testcase_09 AC 90 ms
80,556 KB
testcase_10 AC 90 ms
80,768 KB
testcase_11 AC 89 ms
80,480 KB
testcase_12 AC 150 ms
76,812 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 269 ms
171,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x = list(input())
    y = list(input())
    xx = x + x
    yy = y + y
    n = min(len(x),len(y))*2
    cnt = 0
    for i in range(n):
        cnt += xx[i] == yy[i]
    if cnt != n:
        if xx > yy:
            print("X")
        elif xx < yy:
            print("Y")
    else:
        if len(x) > len(y):
            print("X")
        else:
            print("Y")
        
0