結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー maspymaspy
提出日時 2020-09-07 14:58:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 418 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 63,612 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-28 05:40:10
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 34 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'll f(ll)':
main.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type]
   20 | }
      | ^

ソースコード

diff #

// 愚直解法
// WA にならず TLE にはなることを期待

#include<iostream>
using namespace std;
using ll = long long;

ll f(ll N){
  if(N==1){
    return 1;
  }
  ll x = 1;
  ll MOD = 2*N-1;
  for(int i=1;i<N+10;i++){
    x=2*x%MOD;
    if(x==1){
      return i;
    }
  }
}

int main(){
  ll N, T;
  cin >> T;
  for(int i=0;i<T;i++){
    cin >> N;
    ll K = f(N);
    cout << K << endl;
  }
  return 0;
}
0