| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82557 | sh25_shenpy | 振兴中华 | C++ | Compile Error | 0 MS | 0 KB | 347 | 2026-01-15 18:46:26 |
#include<bits/stdc++.h> using namespace std; int main() int a[5][5]; { for(int i=0;i<5;++i){ a[i][0]=1; a[0][i]=1; } for(int i=1;i<5;++i){ for(int j=i;j<5;++j){ a[i][j]=a[i][j-1]+a[i-1][j]; a[j][i]=a[j][i-1]+a[j-1][i]; } } cout<<a[4][4]; return 0; }