| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20638 | 尹翊泽 | 印度国王的棋盘 | C++ | Compile Error | 0 | 0 MS | 0 KB | 192 | 2021-06-19 16:33:34 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,ans=1; cin>>a>>b; c=a*b; for(int i=1;i<=c;i++) { i=(i-1)*(i-1); ans+=i; } } cout<<ans; return 0; }