結果

問題 No.1337 Fair Otoshidama
ユーザー eSeFeSeF
提出日時 2020-06-09 22:32:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 2,382 ms
コンパイル使用メモリ 191,448 KB
最終ジャッジ日時 2025-01-11 00:34:33
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
const int MOD = 1000000007;
const ll MX=(ll)1e9;
int main()
{
  int X,Y,Z;
  cin >> X >> Y >> Z;
  assert(1<=X&&X<=MX);
  assert(1<=Y&&Y<=MX);
  assert(1<=Z&&Z<=MX);
  X%=3;Y%=3;Z%=3;
  cout << ((X+Y+Z)%3==0?"Yes":"No") << endl;
  return 0;
}
0