結果

問題 No.1119 Division 3
ユーザー Noboru2020
提出日時 2021-01-14 13:01:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 166 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 61,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 02:58:23
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
int main(){
    int a,b,c;
    std::cin>>a>>b>>c;
    if(a%3==0||b%3==0||c%3==0){
        puts("Yes");
    }
    else{
        puts("No");
    }
}
0