結果

問題 No.1130 Grid Numbers
ユーザー Maeda
提出日時 2025-03-19 14:10:49
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 25,984 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-19 14:10:51
合計ジャッジ時間 1,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d %d",&h,&w);
      |         ^~~~~~~~~~~~~~~~~~~~
main.c:8:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |                 scanf("%d",&numList[i]);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void main(void){
	int h,w;
	scanf("%d %d",&h,&w);
	int numList[h*w];
	for(int i = 0 ; i < h*w ; i++ ){
		scanf("%d",&numList[i]);
	}
	for(int i = 0 ; i < h*w ; i++ ){
		for(int j = i ; j < h*w ; j++ ){
			if(numList[i] > numList[j]){
				int num = numList[i];
				numList[i] = numList[j];
				numList[j] = num;
			}
		}
	}
	int count = 0;
	for(int i = 0 ; i < h ; i++ ){
		for(int j = 0 ; j < w ; j++ ){
			printf("%d",numList[count]);
			if(j != w-1){
				printf(" ");
			}
			count++;
		}
		printf("\n");
	}
}
0