QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#361817 | #8508. DiviDuelo | ucup-team2443# | WA | 3ms | 67052kb | C++20 | 780b | 2024-03-23 13:20:30 | 2024-03-23 13:20:30 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1919810;
ll n,m,k;
int a[N],b[N];
int cnt[N];
ll ans;
string s[N];
int dp[N][3];//选了前i个 现在有j个连续辅音
map<char,int> mp;
stack<int> st1,st2;
int tf[N];
int gao(string s){
int sum=0;
for(int i=0;i<s.size();i++){
int t=s[i]-'0';
sum=sum*10+t;
}
return sum;
}
bool isprime(ll x){
if(x==2) return true;
for(ll i=2;i<=x/i;i++){
if(x%i==0) return false;
}
return true;
}
void __(){
cin>>n;
int t=(n-1)%10;
if(t==1||(t>=5&&t<=9)) puts("N");
else puts("Y");
}
int main()
{
int _=1;
// cin>>_;
while(_--){
__();
}
}
//NYYYNNNNNYN
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 3ms
memory: 67052kb
input:
10
output:
N
result:
wrong answer 1st words differ - expected: 'Y', found: 'N'