记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Accepted 2ms 352.0 KiB
#2 Wrong Answer 1ms 344.0 KiB

代码

#include<iostream>
#include<cmath>
#include<cstdlib>
#include<cstdio>
using namespace std;

char a,b;

int main()
{
	a=getchar();
	b=getchar();
	if(((int)a+(int)b-96-96)%10==0)
		cout<<"Yes"<<endl;
	else
		cout<<"No"<<endl;
	system("pause");
	return 0;
}

信息

递交者
类型
递交
题目
P1005 外星人
语言
C++
递交时间
2019-07-08 10:29:54
评测时间
2019-07-08 10:29:54
评测机
分数
10
总耗时
3ms
峰值内存
352.0 KiB