QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#22608#2868. Preparing a contestWhybullYMe#AC ✓2ms3596kbC++20414b2022-03-10 14:02:472022-04-30 01:27:33

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:33]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:3596kb
  • [2022-03-10 14:02:47]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ri int
typedef long long ll;
const int maxn=1e5+10;
template<class T>inline bool ckmin(T &x,const T &y){return x>y?x=y,1:0;}
template<class T>inline bool ckmax(T &x,const T &y){return x<y?x=y,1:0;}
template<class T>inline void clear(T *arr,int siz,int val=0){memset(arr,val,sizeof(T)*(siz+1));}
int main(){
	printf("Flower Olympiad in Informatics");
}

详细

Test #1:

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

input:



output:

Flower Olympiad in Informatics

result:

ok