QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#310495#5419. TrianglesOFforest_1273WA 1ms3732kbC++14320b2024-01-21 14:54:002024-01-21 14:54:02

Judging History

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

  • [2024-01-21 14:54:02]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3732kb
  • [2024-01-21 14:54:00]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
inline int read(){int s=0,f=1;char c=getchar();while(c<'0'||c>'9'){if(c=='-')f*=-1;c=getchar();}while(c>='0'&&c<='9')s=(s<<1)+(s<<3)+(c^48),c=getchar();return s*f;}
int k;
int main(){
    k=read();
    if(k<8)printf("No\n");
    else printf("Yes\n");
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3732kb

input:

2

output:

No

result:

ok no solution

Test #2:

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

input:

24

output:

Yes

result:

wrong output format Unexpected end of file - int32 expected