| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144453 | Kevin | 【基础题】五位好朋友相聚 | C++ | Wrong Answer | 0 MS | 260 KB | 136 | 2026-01-22 19:54:03 |
#include<bits/stdc++.h> using namespace std; int main() { int a=32; for(int i=1;i<=5;i++){ a/=2; } cout<<a; return 0; }
------Input------
0
------Answer-----
81 41 21 11 6
------Your output-----
1