QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#22604#2868. Preparing a contesthy_zheng_zai_nei_juan#AC ✓2ms3552kbC++201.3kb2022-03-10 14:01:222022-04-30 01:27:25

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-04-30 01:27:25]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:3552kb
  • [2022-03-10 14:01:22]
  • 提交

answer

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<vector>
#include<queue>
#include<algorithm>
#include<string>
#include<sstream>
#include<cctype>
#include<cmath>
#include<iomanip>
#include<map>
#include<stack>
#include<set>
#include<functional>
#define in(x) x=read()
#define qr read()
#define int ll
#define mp make_pair
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
namespace fastIO
{
    #define BUF_SIZE 100000
    bool IOerror=0;
    inline char nc()
	{
        static char buf[BUF_SIZE],*p1=buf+BUF_SIZE,*pend=buf+BUF_SIZE;
        if (p1==pend){
            p1=buf; pend=buf+fread(buf,1,BUF_SIZE,stdin);
            if (pend==p1){IOerror=1;return -1;}
        }
        return *p1++;
    }
    inline bool blank(char ch){return ch==' '||ch=='\n'||ch=='\r'||ch=='\t';}
    inline ll read()
	{
        bool sign=0; char ch=nc();ll x=0;
        for (;blank(ch);ch=nc());
        if (IOerror)return 0;
        if (ch=='-')sign=1,ch=nc();
        for (;ch>='0'&&ch<='9';ch=nc())x=x*10+ch-'0';
        if (sign)x=-x;
        return x;
    }
    #undef BUF_SIZE
};
using namespace fastIO;
signed main()
{
	//freopen(".in","r",stdin);
	//freopen(".out","w",stdout);
	cout<<"Flower Olympiad in Informatics";
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3552kb

input:



output:

Flower Olympiad in Informatics

result:

ok