結果

問題 No.2999 Long Long Friedrice
ユーザー friedricefriedrice
提出日時 2024-12-23 17:59:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,097 bytes
コンパイル時間 6,229 ms
コンパイル使用メモリ 314,964 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 23:31:42
合計ジャッジ時間 7,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 11 ms
5,248 KB
testcase_04 AC 11 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 WA -
testcase_14 AC 6 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 6 ms
5,248 KB
testcase_17 WA -
testcase_18 AC 5 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 6 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 5 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 WA -
testcase_29 AC 6 ms
5,248 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 6 ms
5,248 KB
testcase_33 AC 5 ms
5,248 KB
testcase_34 WA -
testcase_35 AC 6 ms
5,248 KB
testcase_36 AC 6 ms
5,248 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using mint = atcoder::modint998244353;
using maxt = atcoder::modint1000000007;
vector<ll> Era(int N) {
  vector<ll> ans(0, 0);
  vector<bool> isprime(N + 1, true);
  isprime.at(1) = false;
  for(int i = 1; i <= N; i++) {
    if(isprime.at(i)) {
      ans.push_back(i);
      for(int j = 2 * i; j <= N; j += i) {
        isprime.at(j) = false;
      }
    }
  }
  return ans;
}
ll POW(ll a, int N) {
  if(N == 1) {
    return a;
  }
  ll ans = POW(a, N / 2) * POW(a, N / 2);
  if(N % 2 == 1) {
    ans *= a;
  }
  return ans;
}
//ライブラリここまで

int main() {
	int N;
	cin >> N;
	vector<int> A(N);
	for(int &o : A) {
		cin >> o;
	}
	vector<int> B(N);
	for(int &o : B) {
		cin >> o;
	}
	set<int> H;
	for(int i = 0; i < N; i++) {
		H.insert(A.at(i));
		H.insert(A.at(i) + B.at(i));
	}
	int ans = 1;
	for(int o : H) {
	  for(int i = 1; i <= 500000; i++) {
	    if(H.count(o + i)) {
	      o += i;
	      ans = o;
	      break;
	    }
	  }
	}
	cout << ans << endl;
}
0