这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《为什么全RE?Python代码(快救救萌新)》回复:
@[sjx233_](/user/206953) 为什么会导致评测Runtime Error呢?蟹蟹辣!
在讨论《为什么全RE?Python代码(快救救萌新)》回复:
@[sjx233_](/user/206953) 非常感谢。现在代码可以全AC了。 ```python s = 'ABC' n = sorted([int(i) for i in input().strip().split()]) m = [n[s.index(i)] for i in input().strip()]…
```python s = 'ABC' n = sorted([int(i) for i in input().split()]) m = [s.index(i) for i in input()] print('{} {} {}'.format(n[m[0]],n[m[1]],n[m[2]])) ```
```python ip = input() s = ip.replace('-','')[:-1] n = 0 for i in range(9): n += (i+1)*int(s[i]) x = '0123456789X'[n%11] if ip[-1] == x: print('Right') else: pr…