結果

問題 No.2999 Long Long Friedrice
ユーザー kotatsugamekotatsugame
提出日時 2024-12-25 10:05:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 70,604 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-12-25 10:05:06
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
27,904 KB
testcase_01 AC 11 ms
27,904 KB
testcase_02 AC 10 ms
27,904 KB
testcase_03 AC 10 ms
28,032 KB
testcase_04 AC 10 ms
28,020 KB
testcase_05 AC 10 ms
27,904 KB
testcase_06 AC 11 ms
28,032 KB
testcase_07 AC 11 ms
28,160 KB
testcase_08 AC 11 ms
28,288 KB
testcase_09 AC 9 ms
28,032 KB
testcase_10 AC 9 ms
28,032 KB
testcase_11 AC 11 ms
28,032 KB
testcase_12 AC 9 ms
28,160 KB
testcase_13 AC 11 ms
28,032 KB
testcase_14 AC 11 ms
28,032 KB
testcase_15 AC 11 ms
27,904 KB
testcase_16 AC 10 ms
28,160 KB
testcase_17 AC 11 ms
28,032 KB
testcase_18 AC 11 ms
27,904 KB
testcase_19 AC 12 ms
27,904 KB
testcase_20 AC 11 ms
28,032 KB
testcase_21 AC 12 ms
28,032 KB
testcase_22 AC 12 ms
28,092 KB
testcase_23 AC 11 ms
28,032 KB
testcase_24 AC 11 ms
28,032 KB
testcase_25 AC 11 ms
27,904 KB
testcase_26 AC 9 ms
28,032 KB
testcase_27 AC 10 ms
27,904 KB
testcase_28 AC 10 ms
27,904 KB
testcase_29 AC 9 ms
28,160 KB
testcase_30 AC 10 ms
27,980 KB
testcase_31 AC 11 ms
27,924 KB
testcase_32 AC 9 ms
28,032 KB
testcase_33 AC 11 ms
27,904 KB
testcase_34 AC 11 ms
27,904 KB
testcase_35 AC 10 ms
27,904 KB
testcase_36 AC 9 ms
28,148 KB
testcase_37 AC 10 ms
27,904 KB
testcase_38 AC 9 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
bool vis[1<<20];
vector<int>G[1<<20];
int N,A[2000];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<N;i++)
	{
		int B;cin>>B;
		G[A[i]].push_back(A[i]+B);
	}
	vis[1]=true;
	int mx=1;
	for(int i=1;i<1<<20;i++)if(vis[i])
	{
		mx=i;
		for(int v:G[i])vis[v]=true;
	}
	cout<<mx<<endl;
}
0