結果
| 問題 |
No.1119 Division 3
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-23 14:44:20 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 168 bytes |
| コンパイル時間 | 1,418 ms |
| コンパイル使用メモリ | 164,944 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-26 08:07:57 |
| 合計ジャッジ時間 | 2,093 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 WA * 10 |
ソースコード
using namespace std;
#include <bits/stdc++.h>
int main(){
int X,Y,Z;
cin >> X >> Y >> Z;
if(X*Y*Z%3==0){
cout << "Yes" <<endl;
}else{
cout << "No" << endl;
}
}