$$\texttt{WA自动机}$$
#include <iostream>
using namespacd std;
int main () {
cout << "WAWACAYXCAKIOI";
return 0;
}
$$\texttt{TLE自动机}$$
#include <iostream>
using namespace std;
int main () {
while (1);
return 0;
}
$$\texttt{OLE自动机}$$
#include <iostream>
using namespace std;
int main() {
while (1) {
cout << 1;
}
return 0;
}
$$\texttt{MLE自动机}$$
#include <iostream>
using namespace std;
const long long N = 10000000000000;
int main() {
while (true) int a[N];
return 0;
}
$$\texttt{RE自动机}$$
$\texttt{1.}$
#include <iostream>
using namespace std;
int main() {
cout << 0 / 0 << endl;
return 0;
}
$\texttt{2.}$
#include <iostream>
using namespace std;
int a[10];
int main() {
//(1)
cout << a[100] << endl;
//(2)
cout << a[-111] << endl;
return 0;
}
$$\texttt{CE自动机}$$
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
我是蒟蒻
return 0;
}
不得不说,我一个月前也想要写这些,但是因为还有题解所以没写了。。。
hhh