結果

問題 No.333 門松列を数え上げ
ユーザー forest3forest3
提出日時 2020-05-11 11:11:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 166,768 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 06:58:03
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 3 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	long long A, B;
	cin >> A >> B;

	long long ans = max( B - A - 1, A - 1);
	if( A > B ) ans = max( 2000000000 - A, A - 1);

	cout << ans << endl;
}
0