結果

問題 No.927 Second Permutation
ユーザー mai
提出日時 2019-11-22 21:29:36
言語 cLay
(20241019-1)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 175,216 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-05 13:26:47
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

string s;
{
  cin>>s;
  sort(s.begin(), s.end());
  next_permutation(s.begin(), s.end());
  for(auto it=s.rbegin();it!=s.rend();++it) wt(*it);
}
0