結果

問題 No.2559 眩しい数直線
ユーザー twooimp2twooimp2
提出日時 2023-12-02 14:37:42
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 201,832 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:00:15
合計ジャッジ時間 2,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
  ll n,x;
  cin>>n>>x;
  vector<ll> a(n),b(n);
  for(ll i=0;i<n;i++){
    cin>>a[i]>>b[i];
  }
  for(ll i=1;i<=x;i++){
    ll ans=0;
    for(ll j=0;j<n;j++){
      ans=max(ans,max((ll)0,b[j]-abs(i-a[j])));
    }
    cout<<ans<<" ";
  }
}
0