結果
問題 | No.780 オフ会 |
ユーザー | Pachicobue |
提出日時 | 2019-01-11 21:29:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 1,664 ms |
コンパイル使用メモリ | 194,208 KB |
最終ジャッジ日時 | 2025-01-06 20:15:55 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> #define show(x) std::cerr << #x << " = " << (x) << std::endl using ll = long long; using ld = long double; constexpr ll MOD = 1000000007LL; template <typename T> constexpr T INF() { return std::numeric_limits<T>::max() / 16; } std::mt19937 mt{std::random_device{}()}; int main() { int A, B; std::cin >> A >> B; std::cout << (B - A >= 1 ? "YES" : "NO") << std::endl; std::cout << std::abs(A + 1 - B) << std::endl; return 0; }