結果
問題 |
No.1119 Division 3
|
コンテスト | |
ユーザー |
![]() |
提出日時 | 2025-10-31 23:33:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 216 bytes |
コンパイル時間 | 1,797 ms |
コンパイル使用メモリ | 194,232 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-10-31 23:33:13 |
合計ジャッジ時間 | 2,591 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 WA * 8 |
ソースコード
#include<bits/stdc++.h> #define endl '\n' #define MAXN 2000 using namespace std; int main() { long long x, y, z; cin >> x >> y >> z; cout << (x * y * z % 3LL == 0 ? "Yes" : "No") << endl; return 0; }