結果

問題 No.490 yukiソート
ユーザー notetonousnotetonous
提出日時 2017-03-11 00:06:40
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 10:33:11
合計ジャッジ時間 1,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   scanf("%d",&n);
      |   ~~~~~^~~~~~~~~
main.cpp:7:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   for(int i=0;i<n;i++)scanf("%d",&a[i]);
      |                       ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
using namespace std;
int n;
int a[5001];
int main(){
  scanf("%d",&n);
  for(int i=0;i<n;i++)scanf("%d",&a[i]);

  for(int i=1;i<2*n-3;i++){
    for(int j=0;j<i && j<n;j++){
      int k=i-j;
	if(a[j]>a[k] && k<n && j<=k){
	  int temp=a[j];
	  a[j]=a[k];
	  a[k]=temp;
	}
    }
  }
  for(int i=0;i<n;i++)printf("%d ",a[i]);
  printf("\n");
  return 0;
}
0