結果

問題 No.2548 Problem Selection
ユーザー しゅらにるーとにしゅらにるーとに
提出日時 2024-11-18 21:00:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 233,040 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-18 21:00:16
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
6,816 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 44 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 1 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:30:19: warning: 'mm' may be used uninitialized [-Wmaybe-uninitialized]
   30 |     for(int i=mm;i<mm+M-1;i++){
      |                  ~^~~~~~~
main.cpp:25:15: note: 'mm' was declared here
   25 |     ll m=9e18,mm;
      |               ^~

ソースコード

diff #

#include<bits/stdc++.h>
#include <atcoder/all>
#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif
using namespace atcoder;
using mint=modint998244353;
using namespace std;
using ll=long long;
using ul=unsigned long long;
int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1};
int dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};
using Graph=vector<vector<int>>;
ll op(ll a,ll b){return a+b;}
ll e(){return 0;}
int main(){
    int N,M;
    cin>>N>>M;
    vector<ll>A(N);
    for(int i=0;i<N;i++)cin>>A[i];
    sort(A.begin(),A.end());
    ll m=9e18,mm;
    for(int i=0;i<N-M+1;i++){
        if(m>A[i+M-1]-A[i])m=A[i+M-1]-A[i],mm=i;
    }
    ll sum=0;
    for(int i=mm;i<mm+M-1;i++){
        sum+=(A[i+1]-A[i])*(A[i+1]-A[i]);
    }
    cout<<sum<<endl;
}
0