結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー kotatsugamekotatsugame
提出日時 2016-10-30 10:29:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 23:33:20
合計ジャッジ時間 583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 17 ms
6,820 KB
testcase_03 AC 18 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    2 | main(){int a[10]={},i;while(~scanf("%1d",&i))a[i]++;for(i=10;i--;)for(;a[i]--;)printf("%d",i);printf("\n");}
      | ^~~~

ソースコード

diff #

#include<cstdio>
main(){int a[10]={},i;while(~scanf("%1d",&i))a[i]++;for(i=10;i--;)for(;a[i]--;)printf("%d",i);printf("\n");}
0