比赛 2025.12.13 评测结果 WWWWWWWWWWAAAWWWWWWW
题目名称 排列变换 最终得分 15
用户昵称 汐汐很希希 运行时间 1.914 s
代码语言 C++ 内存使用 4.64 MiB
提交时间 2025-12-13 10:42:58
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=1e6+10;
const int M=0;
const int MOD=998244353;
const int MAXX=2e9;
int n,p[N],diff[N]; 
int main()
{
	freopen("permutrans.in","r",stdin);
	freopen("permutrans.out","w",stdout);
	
	cin>>n;
	for(int i=1;i<=n;i++) cin>>p[i];
	cout<<n<<' '<<0<<endl;
	return 0;
}