結果

問題 No.2030 Googol Strings
ユーザー とりゐとりゐ
提出日時 2022-07-02 19:40:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-09 21:09:49
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
77,184 KB
testcase_01 AC 47 ms
62,720 KB
testcase_02 AC 44 ms
59,904 KB
testcase_03 AC 38 ms
52,276 KB
testcase_04 AC 134 ms
77,312 KB
testcase_05 AC 47 ms
60,544 KB
testcase_06 AC 52 ms
67,328 KB
testcase_07 AC 57 ms
71,936 KB
testcase_08 AC 56 ms
72,192 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 48 ms
61,824 KB
testcase_11 AC 47 ms
61,440 KB
testcase_12 AC 133 ms
76,536 KB
testcase_13 AC 126 ms
77,824 KB
testcase_14 AC 47 ms
63,104 KB
testcase_15 AC 57 ms
75,136 KB
testcase_16 AC 55 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  x=input()
  y=input()
  if x+y==y+x:
    if x<y:print('Y')
    else:print('X')
    return
  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')
  else:print('X')
  

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