結果
問題 | No.1110 好きな歌 |
ユーザー | syomu |
提出日時 | 2020-07-10 22:26:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,143 bytes |
コンパイル時間 | 1,751 ms |
コンパイル使用メモリ | 166,308 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 09:42:24 |
合計ジャッジ時間 | 16,275 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
ソースコード
#include <bits/stdc++.h> //全てのヘッダファイルをインクルード //ループ #define rep(i, n) for(int i = 0; i < (n); i++) //普通のループ #define repr(i, n) for(int i = n; i >= 0; i--) //逆ループ //型名省略 typedef long long ll; //値 static const ll MX = 100005; static const ll MX_ll = 1e18; //ソート #define SIZE_OF_ARRAY(array) (sizeof(array)/sizeof(array[0])) using namespace std; //#include "./lib/generic/search.h" int main(){ ll n, d; cin >> n >> d; ll a[n], amax=0; rep(i, n){ cin >> a[i]; amax = max(amax, a[i]); } ll b[amax], ans[amax]; //std::sort(a, a + SIZE_OF_ARRAY(a)); //rep(i, n) cout << a[i] << " "; rep(i, n){ b[i] = 0; ans[i] = 0; } ll cnt = 0; rep(i, n){ cnt = 0; if(b[a[i]]==1){ cout << ans[a[i]] << endl; } else{ rep(j, n){ //if(a[i]<a[j]) break; if(i!=j && a[i]-a[j]>=d) cnt++; } b[a[i]] = 1; ans[a[i]] = cnt; cout << cnt << endl; } } return 0; }