結果
| 問題 | No.3352 中点判定 |
| コンテスト | |
| ユーザー |
rieaaddlreiuu
|
| 提出日時 | 2026-02-20 15:24:04 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 308µs | |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 881 ms |
| コンパイル使用メモリ | 178,544 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-21 10:35:52 |
| 合計ジャッジ時間 | 2,330 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int P,Q,R;
cin >> P >> Q >> R;
if(2*Q==P+R){
cout << "Yes" << endl;
} else {
cout << "No" << endl;
}
}
rieaaddlreiuu