結果

問題 No.1119 Division 3
ユーザー mudbdb
提出日時 2020-07-22 23:21:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 62,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 01:07:28
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0