运算符测试
暂无测试数据。
Background
Special for beginners, ^_^
Description
Input: two int values (a, b).
Output: a+b, a-b, a*b, a//b
Format
Input
Two integers x and y, satisfying 0 <= x, y <= 256.x % y == 0.
Output
a+b, a-b, a*b, a/b, a//b, a**b, a%b
Sample 1
Input
128 4
Output
132
124
512
32
32
268435456
0
Limitation
1s, 1024KiB for each test case.
Source
Modified from Vijos Original
信息
- ID
- 1029
- 难度
- 10
- 分类
- (无)
- 标签
- (无)
- 递交数
- 21
- 已通过
- 0
- 通过率
- 0%
- 上传者