ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#170437 | #1221. 阴影面积(1) | mengxiangjia | 100 | 0ms | 1196kb | C++ | 124b | 2023-04-28 23:23:27 | 2023-04-28 23:23:29 |
answer
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a*a-b*b;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 50
Accepted
time: 0ms
memory: 1196kb
input:
5 3
output:
16
result:
ok single line: '16'
Test #2:
score: 50
Accepted
time: 0ms
memory: 1196kb
input:
15 13
output:
56
result:
ok single line: '56'