| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 83415 | sh25_shengmy | 全排列 | C++ | 编译错误 | 0 MS | 0 KB | 198 | 2026-01-25 21:17:45 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); int i=s.size(); do{ cout<<s; }while(next_permutation(s,s+i)); return 0; }