結果
問題 | No.998 Four Integers |
ユーザー | Mayimg |
提出日時 | 2020-02-28 21:45:20 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 336 bytes |
コンパイル時間 | 2,089 ms |
コンパイル使用メモリ | 195,948 KB |
最終ジャッジ日時 | 2025-01-09 02:41:29 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(0); //a int a[4]; cin >> a[0] >> a[1] >> a[2] >> a[3]; sort(a, a + 4); for (int i = 0; i < 3; i++) if (a[i] + 1 != a[i + 1]) { cout << "No\n"; return 0; } cout << "Yes\n"; return 0; }