結果

問題 No.2424 Josouzai
ユーザー nekotinekoti
提出日時 2023-08-18 21:10:23
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 02:46:06
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 52 ms
5,376 KB
testcase_06 AC 50 ms
5,376 KB
testcase_07 AC 47 ms
5,376 KB
testcase_08 AC 49 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 26 ms
5,376 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 14 ms
5,376 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 46 ms
5,376 KB
testcase_26 AC 32 ms
5,376 KB
testcase_27 AC 47 ms
5,376 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 37 ms
5,376 KB
testcase_30 AC 8 ms
5,376 KB
testcase_31 AC 21 ms
5,376 KB
testcase_32 AC 48 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
//■ライブラリ
#define _SORT_TYPE long
int ascsort(const void * n1, const void * n2){if(*(_SORT_TYPE *)n1>*(_SORT_TYPE *)n2)return 1;else if (*(_SORT_TYPE *)n1<*(_SORT_TYPE *)n2)return -1;else return 0;}//昇順ソート
int main(void)
{
  int scan;//scanf警告用
  long long ans=0;
  int i, j;
  
  int n,k;
  scan=scanf("%d",&n);
  scan=scanf("%d",&k);
  _SORT_TYPE a[n];
  for(i=0; i<n; i++)scan=scanf("%ld",&a[i]);
  qsort(a, n, sizeof(_SORT_TYPE), ascsort);
  for(i=0; i<n; i++)
  {
  	ans+=a[i];
  	if(k<=ans)break;
  }
  printf("%d %lld", i, k-ans+a[i]);
  return 0;
}
0