Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
59510 | GT3RS 飞起来@阚 | 全排列 | C++ | 通过 | 1 MS | 244 KB | 181 | 2024-12-26 17:17:49 |
#include <bits/stdc++.h> using namespace std; int main() { char s[100]; cin >> s; do { cout << s << endl; } while (next_permutation(s, s + strlen(s))); return 0; }