結果
| 問題 |
No.1119 Division 3
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-14 13:00:06 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 126 bytes |
| コンパイル時間 | 481 ms |
| コンパイル使用メモリ | 62,848 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 02:56:47 |
| 合計ジャッジ時間 | 1,154 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 WA * 10 |
ソースコード
#include<iostream>
int main(){
int a,b,c;
std::cin>>a>>b>>c;
std::cout<<(a*b*c%3 == 0?"Yes":"No") << std::endl;
}