結果

問題 No.998 Four Integers
ユーザー ch03715jch03715j
提出日時 2020-03-16 14:38:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 1,456 ms
コンパイル使用メモリ 171,184 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 01:02:04
合計ジャッジ時間 2,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:10:17: warning: 'i' may be used uninitialized [-Wmaybe-uninitialized]
   10 |     for(int i; i<vc.size() -1 ; i++){
      |                ~^~~~~~~~~~~~~
main.cpp:10:13: note: 'i' was declared here
   10 |     for(int i; i<vc.size() -1 ; i++){
      |             ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    
    ll v[4];
    cin >> v[0],v[1],v[2],v[3];
    vector<ll> vc (begin(v), end(v));
    sort(vc.begin(), vc.end());
    for(int i; i<vc.size() -1 ; i++){
        if(vc[i]+1 != vc[i+1]){
            cout << "No" << endl;
        }
    }
    cout << "Yes" << endl;
}
0