| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 74803 | RecluseLL | 寻找最低数 | C++ | Accepted | 100 | 0 MS | 188 KB | 191 | 2023-06-01 10:10:34 |
#include <stdio.h> int main(void) { int n, ans{1}; while(~scanf("%d", &n) && n) { for(ans = 1; !(n & 1); n >>= 1, ans <<= 1); printf("%d\n", ans); } }