Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55529 | zhangweiran | 报数模拟 | C++ | 通过 | 0 MS | 252 KB | 343 | 2024-11-08 07:11:16 |
#include<bits/stdc++.h> using namespace std; int main() { queue<int> q; int n; cin>>n; for(int i=1;i<=n;i++) q.push(i); int cnt=0; for(int i=1;;i++) { if(i==n) { cout<<q.front(); break; } int m=q.front(); q.pop(); q.push(m); m=q.front(); q.pop(); q.push(m); q.pop(); } return 0; }