ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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;
}
Details
小提示:点击横条可展开更详细的信息
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'