提出 #7955954


ソースコード 拡げる

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     @hamayanhamayan
    /   \     | |
    /   / ̄ ̄ ̄ ̄/  |
  __(__ニつ/     _/ .| .|____
     \/____/ (u ⊃
---------------------------------------------------------------------------------------------------*/














int N, X, A[1010];
//---------------------------------------------------------------------------------------------------
void _main() {
	cin >> N >> X;
	rep(i, 0, N) cin >> A[i];

	int ma = -1;
	rep(i, 0, N) chmax(ma, A[i]);

	int ans = 0;
	rep(i, 0, N) if (ma <= A[i] + X) ans++;
	cout << ans << endl;
}





提出情報

提出日時
問題 A - November Festival
ユーザ hamayanhamayan
言語 C++14 (GCC 5.4.1)
得点 200
コード長 1604 Byte
結果 AC
実行時間 1 ms
メモリ 256 KiB

ジャッジ結果

セット名 All Sample
得点 / 配点 200 / 200 0 / 0
結果
AC × 15
AC × 2
セット名 テストケース
All hand1, hand2, hand3, random0, random1, random2, random3, random4, random5, random6, random7, random8, random9, sample_01, sample_02
Sample sample_01, sample_02
ケース名 結果 実行時間 メモリ
hand1 AC 1 ms 256 KiB
hand2 AC 1 ms 256 KiB
hand3 AC 1 ms 256 KiB
random0 AC 1 ms 256 KiB
random1 AC 1 ms 256 KiB
random2 AC 1 ms 256 KiB
random3 AC 1 ms 256 KiB
random4 AC 1 ms 256 KiB
random5 AC 1 ms 256 KiB
random6 AC 1 ms 256 KiB
random7 AC 1 ms 256 KiB
random8 AC 1 ms 256 KiB
random9 AC 1 ms 256 KiB
sample_01 AC 1 ms 256 KiB
sample_02 AC 1 ms 256 KiB