結果
問題 | No.1119 Division 3 |
ユーザー | merom686 |
提出日時 | 2020-07-22 21:20:56 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 325 bytes |
コンパイル時間 | 1,330 ms |
コンパイル使用メモリ | 89,108 KB |
最終ジャッジ日時 | 2025-01-12 02:02:33 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; int main() { int x, y, z; cin >> x >> y >> z; cout << ((x % 3 == 0 || y % 3 == 0 || z % 3 == 0) ? "Yes" : "No") << endl; return 0; }