結果
問題 | No.2241 Reach 1 |
ユーザー |
|
提出日時 | 2023-03-10 23:15:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 449 bytes |
コンパイル時間 | 1,818 ms |
コンパイル使用メモリ | 167,844 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 05:24:12 |
合計ジャッジ時間 | 2,730 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 WA * 8 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; #define REP(i,n) for(int i=0;i<int(n);i++) int main(void){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll i,j,k; ll N; cin >> N; ll a=1; ll ans=1000000000000; for(i=1;i<=60;i++){ a*=2; if(a%N==0){ cout << 1 << endl; return 0; } ll d=a-((a-1)/N*N+1); ans=min(ans,d); } ans+=2; cout << ans << endl; return 0; }