結果
| 問題 | No.1337 Fair Otoshidama |
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-09-02 19:44:12 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 303 bytes |
| コンパイル時間 | 928 ms |
| コンパイル使用メモリ | 100,032 KB |
| 最終ジャッジ日時 | 2025-02-16 18:15:29 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 18 WA * 2 |
ソースコード
#include<stdio.h>
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;
int main()
{
int a, b, c;
cin >> a >> b >> c;
cout << (!((a+b+c)%3) ? "Yes" : "No") << endl;
}
kpinkcat