結果

問題 No.2030 Googol Strings
ユーザー rara
提出日時 2022-09-11 19:47:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-11-28 11:16:40
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

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