結果

問題 No.1337 Fair Otoshidama
ユーザー HAnaotouHAnaotou
提出日時 2021-01-15 21:41:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,003 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 167,880 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 23:06:46
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ll long long
#define ld long double
#define rep(i, n) for(ll i=0; i<n; i++)
#define rrep(i, n) for(ll i=n-1; i>=0; i--)
#define rep2(i, a, b) for(ll i=a; i<b; i++)
#define Pii pair<int, int>
#define Pll pair<ll, ll>
#define fi first
#define se second
#define Vi vector<int>
#define VVi vector<vector<int>>
#define Vl vector<ll>
#define VVl vector<vector<ll>>
using namespace std;
string YES[2] = {"NO", "YES"};
string Yes[2] = {"No", "Yes"};
string yes[2] = {"no", "yes"};

int main(){
    int x, y ,z;
    cin >> x >> y >> z;

    int ave=(x+y+z)/3;

    bool ans=true;

    //a
    int sa=abs(x-ave);
    if(x>ave && sa%3!=0) ans=false;
    else if(x<ave && sa%2!=0) ans==false;

    //b
    sa=abs(y-ave);
    if(y>ave && sa%1!=0) ans=false;
    else if(y<ave && sa%2!=0) ans==false;

    //c
    sa=abs(z-ave);
    if(z>ave && sa%2!=0) ans=false;
    else if(z<ave && sa%3!=0) ans==false;

    if(ans) cout<<Yes[1]<<endl;
    else cout<<Yes[0]<<endl;

    return 0;
}
0