| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312134 | 王冠程 | 【C1-T】淘淘的棒棒糖 | C++ | Accepted | 100 | 1 MS | 252 KB | 123 | 2025-03-09 16:22:40 |
#include<iostream> using namespace std; int main(){ int p,n; cin>>n>>p; cout<<p<<"*"<<n<<"="<<n*p; return 0; }