| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 436393 | 顾鑫辰 | 【C6-9】报数 | C++ | Accepted | 100 | 2 MS | 248 KB | 225 | 2026-04-14 16:20:16 |
#include <iostream> using namespace std; int main() { int n; cin >> n; int ans = 0; for (int i = 2; i <= n; i++) { ans = (ans + 3) % i; } cout << ans + 1 << endl; return 0; }