Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46313 | zhouhuanyu 玙静 | 组合 | C++ | 通过 | 0 MS | 244 KB | 146 | 2024-05-03 09:39:11 |
#include <bits/stdc++.h> using namespace std; int main(){ int n, m; cin >> n >> m; int num = min(n, m); cout << num - 1; return 0; }