結果

問題 No.2030 Googol Strings
ユーザー とりゐとりゐ
提出日時 2022-07-02 19:33:57
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 314 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 77,288 KB
最終ジャッジ日時 2024-05-09 22:37:45
合計ジャッジ時間 2,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
77,288 KB
testcase_01 AC 45 ms
61,056 KB
testcase_02 AC 42 ms
58,624 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 139 ms
77,096 KB
testcase_05 AC 45 ms
59,520 KB
testcase_06 AC 50 ms
64,384 KB
testcase_07 AC 54 ms
68,352 KB
testcase_08 AC 53 ms
67,840 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 46 ms
61,952 KB
testcase_15 AC 62 ms
75,392 KB
testcase_16 AC 55 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  x=input()
  y=input()
  cx=0
  while cx*len(x)<len(y):
    cx+=1
  cy=0
  while cy*len(y)<len(x):
    cy+=1
  xx=x*(cx+1)
  yy=y*(cy+1)
  if xx<yy:
    print('Y')
  elif xx>yy:
    print('X')
  else:
    if x<y:
      print('Y')
    else:
      print('X')
  

for _ in range(int(input())):
  solve()
0