結果
| 問題 | No.998 Four Integers |
| コンテスト | |
| ユーザー |
Strorkis
|
| 提出日時 | 2020-02-28 21:23:03 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 373 bytes |
| 記録 | |
| コンパイル時間 | 741 ms |
| コンパイル使用メモリ | 91,192 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-24 13:07:21 |
| 合計ジャッジ時間 | 2,122 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
vector<int> v(4);
for (int i = 0; i < 4; i++) cin >> v[i];
sort(v.begin(), v.end());
for (int i = 0; i < 3; i++) {
if (v[i+1] - v[i] != 1) {
cout << "No" << "\n";
return 0;
}
}
cout << "Yes" << "\n";
}
Strorkis