結果
問題 | No.998 Four Integers |
ユーザー | omgitskuu |
提出日時 | 2020-03-16 22:57:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 625 ms |
コンパイル使用メモリ | 70,972 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-06 02:22:04 |
合計ジャッジ時間 | 3,330 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main() { string answer; int l, i=0, a[10]; while(cin>>l){ a[i] = l; i++; } sort(a, a+l); answer = "Yes"; for (int i = 0; i < 3; ++i) { if (a[i]+1 != a[i+1]){ answer = "No"; break;} } cout <<answer<< endl; return 0; }