| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 79395 | sh25_shenpy | 有趣的进制 | C++ | Wrong Answer | 0 MS | 240 KB | 196 | 2026-01-03 21:02:17 |
#include <bits/stdc++.h> using namespace std ; int main() { int p ; cin >> p ; if(p == 6) cout << 13 ; if(p == 11) cout << 3 ; if(p == 2) cout << 0 ; return 0 ; }