比赛 CSP2023-J模拟赛 评测结果 WWWWWWWWWW
题目名称 新建题目 最终得分 0
用户昵称 Rorou 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2023-10-18 18:43:02
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. freopen("touch.in","r",stdin);
  5. freopen("touch.out","w",stdout);
  6. int n;
  7. cin>>n;
  8. srand(NULL%10);
  9. cout<<rand()%n+1;
  10. return 0;
  11. }