結果
問題 | No.965 門松列が嫌い |
ユーザー |
![]() |
提出日時 | 2020-01-13 20:27:20 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,134 bytes |
コンパイル時間 | 2,574 ms |
コンパイル使用メモリ | 157,952 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 16:13:19 |
合計ジャッジ時間 | 3,197 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define rep(i,N) for(int i=0;i<int(N);++i)#define rep1(i,N) for(int i=1;i<int(N);++i)#define all(a) (a).begin(),(a).end()#define print(v) { cerr<<#v<<": [ "; for(auto _ : v) cerr<<_<<", "; cerr<<"]"<<endl; }#define printpair(v) { cerr<<#v<<": [ "; for(auto _ : v) cerr<<"{"<<_.first<<","<<_.second<<"}"<<", "; cerr<<"]"<<endl; }#define bit(k) (1LL<<(k))typedef long long ll;template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }const int INF = 1e9;const ll INFLL = 1e18;const ll MOD = 1e9+7;const double PI = acos(-1.0);const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1};const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1};/*------------------------------------/for library*//*------------------------------------*/int main() {cin.tie(0);ios::sync_with_stdio(false);cout << fixed << setprecision(20);int A[3];rep(i,3)cin>>A[i];cout<<min({abs(A[1]-A[0]), abs(A[0]-A[2]),abs(A[1]-A[2])})<<endl;}