QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#361827#8508. DiviDueloucup-team2443#WA 8ms69396kbC++20780b2024-03-23 13:21:162024-03-23 13:21:16

Judging History

你现在查看的是最新测评结果

  • [2024-03-23 13:21:16]
  • 评测
  • 测评结果:WA
  • 用时:8ms
  • 内存:69396kb
  • [2024-03-23 13:21:16]
  • 提交

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==0||(t>=4&&t<=8)) puts("N");
    else puts("Y");
}

int main()
{
    
    int _=1;
    // cin>>_;
    while(_--){
        __();
    }
}
//NYYYNNNNNYN

詳細信息

Test #1:

score: 100
Accepted
time: 4ms
memory: 69396kb

input:

10

output:

Y

result:

ok "Y"

Test #2:

score: 0
Accepted
time: 4ms
memory: 67320kb

input:

9

output:

N

result:

ok "N"

Test #3:

score: 0
Accepted
time: 8ms
memory: 67116kb

input:

1

output:

N

result:

ok "N"

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 67316kb

input:

549755813888

output:

N

result:

wrong answer 1st words differ - expected: 'Y', found: 'N'