結果

問題 No.131 マンハッタン距離
ユーザー J31831276
提出日時 2018-12-28 03:54:12
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 57,744 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 14:57:51
合計ジャッジ時間 1,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>

#define ll long long

using namespace std;

int main(){

   int x,y,d;
   cin>>x>>y>>d;
   int ans=d+1;
   if(d>x) ans-=(d-x);
   if(d>y) ans-=(d-y);
   ans=max(ans,0);
   cout<<ans<<endl; 

   return 0;
}
0