結果

問題 No.2030 Googol Strings
ユーザー rara
提出日時 2022-09-11 19:49:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 184 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 69,536 KB
最終ジャッジ日時 2024-11-28 11:18:17
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other RE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

_input = input().split('\n')
t = int(_input[0])
case = list(map(lambda x: x.split(' '),_input[1:]))
for x,y in case:
    result.append('X' if x*2>y*2 else 'Y')
print('\n'.join(result))
0