結果
| 問題 | No.1119 Division 3 |
| コンテスト | |
| ユーザー |
mudbdb
|
| 提出日時 | 2020-07-22 23:21:16 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 266 bytes |
| 記録 | |
| コンパイル時間 | 719 ms |
| コンパイル使用メモリ | 73,544 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-07 10:56:57 |
| 合計ジャッジ時間 | 1,302 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 16 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int x,y,z;
cin >> x >> y >> z;
if (x%3==0) cout << "yes" << endl;
else if (y%3==0) cout << "yes" << endl;
else if (z%3==0) cout << "yes" << endl;
else cout << "no" << endl;
return 0;
}
mudbdb