結果

問題 No.1119 Division 3
ユーザー hgotohgoto
提出日時 2020-11-27 12:07:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 276 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 191,016 KB
最終ジャッジ日時 2025-01-16 06:03:07
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  ll x, y, z;
  cin >> x >> y >> z;
  if (x % 3 == 0 || y % 3 == 0 || z % 3 == 0) {
    cout << "Yes" << '\n';
  } else {
    cout << "No" << '\n';
  }
}
0