[R25A]小Z老师的拼数游戏0
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
时空限制
1S/512M
题目描述
小 Z 厌倦了拼数游戏。
他手上有一个正整数 和一个非负整数 。小 Z 会先将 的数字序列翻转得到 。由于他不喜欢前导零,因此会去除 可能存在的所有前导零。最后,他将处理后的 拼接到 的末尾,得到一个新的数字 。
请你输出新的数字 。
格式
输入格式
第一行包含 个整数 ,具体意义如题意所示。
输出格式
输出一个整数 ,具体意义如题意所示。
样例
样例输入 #1
123 456
样例输出 #1
123654
样例解释 #1
将 翻转后可以得到 ,拼接后得到的数字为 。
样例输入 #2
123 4560
样例输出 #2
123654
样例解释 #2
将 翻转后可以得到 ,删除前导 后 ,拼接后得到的数字为 。
样例输入 #3
123 0
样例输出 #3
1230
样例解释 #3
将 翻转后可以得到 ,由于 没有前导 ,故拼接后得到的数字为 。
数据规模
记 为 的位数, 为 的位数。
对于 的数据,。
对于 的数据,。保证 且 均不含前导 。
代码源挑战赛 Round 25
- Status
- Done
- Rule
- DMY
- Start at
- 2025-8-15 20:00
- End at
- 2025-8-15 21:30
- Duration
- 1.5 hour(s)
- Host
- Partic.
- 492