結果

問題 No.780 オフ会
ユーザー focusfocus
提出日時 2019-01-27 19:50:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 863 ms
コンパイル使用メモリ 67,600 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 03:34:18
合計ジャッジ時間 1,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
using ll = long long;

int main(){
        int a,b;
        cin >> a >> b;
        a++;
        if(a<=b){
                cout << "YES\n" << b-a << endl;
        }
        else{
                cout << "NO\n" << a-b << endl;
        }
}
0