結果

問題 No.1337 Fair Otoshidama
ユーザー Noboru2020
提出日時 2021-01-15 21:56:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 106 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 62,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 14:28:16
合計ジャッジ時間 1,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

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