Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60307 seanlsy J4 C++ 解答错误 0 0 MS 252 KB 415 2022-10-15 11:24:26

Tests(0/10):


#include <bits/stdc++.h> using namespace std; inline int read(){ int x=0,f=1;char ch=getchar(); for(;ch<'0'||ch>'9';ch=getchar()) if(ch=='-') f=-1; for(;ch>='0'&&ch<='9';ch=getchar()) x=(x<<1)+(x<<3)+(ch^48); return x*f; } int n; int main(){ // freopen("J4.in","r",stdin); // freopen("J4.out","w",stdout); srand(time(0)); srand(rand()); n=read(); printf("%d\n",rand()%(n-1)+2); return 0; }


测评信息: