結果
| 問題 | No.2030 Googol Strings |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-11 19:49:15 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 184 bytes |
| 記録 | |
| コンパイル時間 | 359 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 69,700 KB |
| 最終ジャッジ日時 | 2026-05-22 12:18:27 |
| 合計ジャッジ時間 | 2,206 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 16 |
ソースコード
_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))