結果

問題 No.97 最大の値を求めるくえり
ユーザー 初心者だよ!初心者だよ!
提出日時 2016-12-21 17:54:07
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 782 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 56,280 KB
実行使用メモリ 10,784 KB
最終ジャッジ日時 2024-05-08 09:36:02
合計ジャッジ時間 14,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 22 ms
6,940 KB
testcase_02 AC 264 ms
6,940 KB
testcase_03 AC 268 ms
6,944 KB
testcase_04 AC 160 ms
6,944 KB
testcase_05 AC 165 ms
6,940 KB
testcase_06 AC 165 ms
6,944 KB
testcase_07 AC 172 ms
6,940 KB
testcase_08 AC 185 ms
6,940 KB
testcase_09 AC 205 ms
6,940 KB
testcase_10 AC 246 ms
6,940 KB
testcase_11 AC 283 ms
6,944 KB
testcase_12 AC 322 ms
6,944 KB
testcase_13 AC 365 ms
6,944 KB
testcase_14 AC 560 ms
6,940 KB
testcase_15 AC 1,162 ms
6,944 KB
testcase_16 AC 2,152 ms
6,944 KB
testcase_17 TLE -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

unsigned xor128_x = 123456789, xor128_y = 362436069, xor128_z = 521288629, xor128_w = 88675123;
unsigned xor128(){
  unsigned t = xor128_x^(xor128_x<<11);
  xor128_x = xor128_y; xor128_y = xor128_z; xor128_z = xor128_w;
  return xor128_w=xor128_w^(xor128_w>>19)^(t^(t>>8));
}

void generateA(int N, int A[]){
  for(int i = 0;i<N;++i)
  A[i]=xor128()%100003;
}

int main(){
  int N ,Q;
  cin >> N >> Q;
  int* A = new int[N];
  int* q = new int[Q];
  int result;
  long long temp;
  for(int i = 0;i<Q;i++){
    cin >> q[i];
  }
  generateA(N,A);//creat A[N]

  for(int i =0;i<Q;i++){
    result=0;
    for(int j=0;j<N;j++){
      temp = (long long)A[j]*q[i]%100003;
      if(result<temp)result=temp;
    }
    cout << result << endl;
  }

}
0