結果
| 問題 | No.780 オフ会 |
| コンテスト | |
| ユーザー |
ratetion
|
| 提出日時 | 2019-01-11 21:26:32 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 222 bytes |
| 記録 | |
| コンパイル時間 | 921 ms |
| コンパイル使用メモリ | 178,276 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-23 20:04:12 |
| 合計ジャッジ時間 | 1,805 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 23 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
#define int long long
#define endl '\n'
int mod=1e9+7;
signed main(){
int a,b;
cin>>a>>b;
if(a<b)cout<<"Yes"<<endl;
else cout<<"No"<<endl;
cout<<abs(a+1-b)<<endl;
}
ratetion