結果
問題 |
No.333 門松列を数え上げ
|
ユーザー |
|
提出日時 | 2025-03-16 18:09:17 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 385 bytes |
コンパイル時間 | 1,883 ms |
コンパイル使用メモリ | 190,968 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-16 18:09:20 |
合計ジャッジ時間 | 3,165 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 4 WA * 3 |
ソースコード
#include<bits/stdc++.h> #define int long long #define matsuri pair<int,int> //const int iris = 1e9+7; const int iris = 998244353; using namespace std; void solve() { int a,b; cin>>a>>b; int O = 2e9; int ans; if(b>a) ans=b-2; else ans=O-a; cout<<ans<<'\n'; } signed main() { ios::sync_with_stdio(0); cin.tie(0); int T=1; //cin>>T; while(T--) solve(); return 0; }