結果
| 問題 | No.256 桁の数字を入れ替え (2) |
| コンテスト | |
| ユーザー |
piyoko_212
|
| 提出日時 | 2015-12-28 21:26:34 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 3 ms / 2,000 ms |
| + 594µs | |
| コード長 | 218 bytes |
| 記録 | |
| コンパイル時間 | 186 ms |
| コンパイル使用メモリ | 54,848 KB |
| 実行使用メモリ | 9,744 KB |
| 最終ジャッジ日時 | 2026-08-30 22:16:47 |
| 合計ジャッジ時間 | 1,564 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#include<stdio.h>
#include<algorithm>
#include<string.h>
using namespace std;
char str[110000];
int main(){
scanf("%s",str);
int len=strlen(str);
std::sort(str,str+len);
reverse(str,str+len);
printf("%s\n",str);
}
piyoko_212