結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー zazaboonzazaboon
提出日時 2015-08-09 00:10:55
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 06:07:03
合計ジャッジ時間 473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:11:18: warning: format ‘%ld’ expects argument of type ‘long int *’, but argument 2 has type ‘long long unsigned int *’ [-Wformat=]
   11 |         scanf("%ld",&nyuryoku);
      |                ~~^  ~~~~~~~~~
      |                  |  |
      |                  |  long long unsigned int *
      |                  long int *
      |                %lld
main.c:11:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%ld",&nyuryoku);
      |         ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
int sort(const void*a,const void*b) 
{
	return *(int *)b - *(int *)a;
}
int main (void)
{
	unsigned long long nyuryoku,nyuryoku_c;
	int i,ketasuu=0,keta[9999],j;
	scanf("%ld",&nyuryoku);
	nyuryoku_c = nyuryoku;
	for(i=0;nyuryoku_c!=0;i++)
	{
		nyuryoku_c /= 10;
		ketasuu++;
	};
	for(i=0;i<ketasuu;i++)
	{
		nyuryoku_c = nyuryoku;

		for(j=i;j<ketasuu-1;j++)
		{
			nyuryoku_c/=10;
		}
		keta[i] = nyuryoku_c % 10;
	}
	qsort((void *)keta,ketasuu,sizeof(keta[0]),sort);
	for(i=0;i<ketasuu;i++)
	{
		printf("%d",keta[i]);
	}
	return 0;
}
0