| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312138 | 李铭泽 | 【C1-T】淘淘的棒棒糖 | C++ | Wrong Answer | 0 | 1 MS | 252 KB | 122 | 2025-03-09 16:24:17 |
#include<iostream> using namespace std; int main(){ int n,p; cin>>n>>p; cout<<n<<"*"<<p<<"="<<n*p; return 0; }