結果
| 問題 |
No.2030 Googol Strings
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-11 19:51:36 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 220 bytes |
| コンパイル時間 | 342 ms |
| コンパイル使用メモリ | 81,932 KB |
| 実行使用メモリ | 53,640 KB |
| 最終ジャッジ日時 | 2024-11-28 11:23:06 |
| 合計ジャッジ時間 | 2,133 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 16 |
ソースコード
_input = input().split('\n')
t = int(_input[0])
case = _input[1:]
case = [case[index:index+2] for index in range(2,len(case))]
for x,y in case:
result.append('X' if x*2>y*2 else 'Y')
print(result[-1])
print('\n')