| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77612 | sh25_wuyy | 幂的末尾 | C++ | Accepted | 0 MS | 240 KB | 177 | 2025-12-26 14:32:47 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b,t=1; cin>>a>>b; for(int i=1;i<=b;i++) t=t*a%1000; cout<<setw(3)<<setfill('0')<<t; return 0; }