結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー HimatsubushinHimatsubushin
提出日時 2024-12-24 11:55:10
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 11:55:12
合計ジャッジ時間 1,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <memory.h>

#define MAX 1000000

char r[10][MAX];

int main(void) {
	char b;
	int bit, temp, tail[10] = { 0 };

	for (int i = 0; i < 10; i++) {
		r[i][0] = '\0';
	}

	while (1) {
		scanf("%c", &b);
		if (b == '\n')
			break;
		r[b - 0x30][tail[b - 0x30]] = b;
		tail[b - 0x30]++;
	}

	for (int i = 9; i >= 0; i--) {
		r[i][tail[i]] = '\0';
		printf("%s", r[i]);
	}
	printf("\n");

	return 0;
}
0