結果
| 問題 | No.2030 Googol Strings |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-11 19:47:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 354 ms |
| コンパイル使用メモリ | 82,300 KB |
| 実行使用メモリ | 54,616 KB |
| 最終ジャッジ日時 | 2024-11-28 11:16:38 |
| 合計ジャッジ時間 | 2,617 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 16 |
ソースコード
_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()