| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 56108 | 王籽易 | 国王的米粒 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 152 | 2022-08-01 14:57:52 |
#include <bits/stdc++.h> using namespace std; int m,n,t; int ans=0; int main(){ cin>>m>>n; cout<<(1<<max(m+1,n+1))-(1<<min(m,n)); return 0; }