結果

問題 No.1460 Max of Min
ユーザー googol_S0googol_S0
提出日時 2021-03-31 21:59:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 202,092 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-12-15 18:39:52
合計ジャッジ時間 72,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
12,800 KB
testcase_01 AC 11 ms
12,800 KB
testcase_02 AC 15 ms
12,800 KB
testcase_03 AC 982 ms
12,928 KB
testcase_04 AC 975 ms
12,960 KB
testcase_05 AC 9 ms
12,896 KB
testcase_06 AC 979 ms
12,928 KB
testcase_07 AC 976 ms
12,852 KB
testcase_08 AC 15 ms
12,800 KB
testcase_09 WA -
testcase_10 AC 975 ms
12,928 KB
testcase_11 AC 977 ms
12,928 KB
testcase_12 AC 459 ms
12,928 KB
testcase_13 WA -
testcase_14 AC 561 ms
12,928 KB
testcase_15 AC 385 ms
12,984 KB
testcase_16 AC 907 ms
12,928 KB
testcase_17 AC 708 ms
12,928 KB
testcase_18 WA -
testcase_19 AC 652 ms
12,928 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 672 ms
12,912 KB
testcase_23 AC 115 ms
12,856 KB
testcase_24 AC 755 ms
12,900 KB
testcase_25 AC 109 ms
12,928 KB
testcase_26 AC 963 ms
12,928 KB
testcase_27 AC 395 ms
12,876 KB
testcase_28 AC 218 ms
12,904 KB
testcase_29 AC 728 ms
12,928 KB
testcase_30 AC 956 ms
12,928 KB
testcase_31 AC 686 ms
12,928 KB
testcase_32 AC 869 ms
12,928 KB
testcase_33 AC 525 ms
12,904 KB
testcase_34 AC 620 ms
12,928 KB
testcase_35 AC 380 ms
12,800 KB
testcase_36 AC 240 ms
12,928 KB
testcase_37 AC 712 ms
12,964 KB
testcase_38 AC 893 ms
12,968 KB
testcase_39 AC 544 ms
12,840 KB
testcase_40 AC 456 ms
12,928 KB
testcase_41 AC 390 ms
12,832 KB
testcase_42 AC 299 ms
12,908 KB
testcase_43 AC 665 ms
12,984 KB
testcase_44 AC 853 ms
12,836 KB
testcase_45 AC 170 ms
12,904 KB
testcase_46 AC 589 ms
12,984 KB
testcase_47 AC 664 ms
12,988 KB
testcase_48 AC 893 ms
12,936 KB
testcase_49 AC 781 ms
12,928 KB
testcase_50 AC 202 ms
12,836 KB
testcase_51 AC 698 ms
12,928 KB
testcase_52 AC 349 ms
12,928 KB
testcase_53 AC 716 ms
12,968 KB
testcase_54 AC 975 ms
12,916 KB
testcase_55 AC 977 ms
12,940 KB
testcase_56 AC 978 ms
12,836 KB
testcase_57 AC 975 ms
13,016 KB
testcase_58 AC 977 ms
12,936 KB
testcase_59 AC 976 ms
12,948 KB
testcase_60 AC 974 ms
12,928 KB
testcase_61 AC 974 ms
12,996 KB
testcase_62 AC 978 ms
12,928 KB
testcase_63 AC 975 ms
12,984 KB
testcase_64 AC 977 ms
13,004 KB
testcase_65 AC 976 ms
12,928 KB
testcase_66 AC 979 ms
12,928 KB
testcase_67 AC 975 ms
12,948 KB
testcase_68 AC 977 ms
13,016 KB
testcase_69 AC 977 ms
13,052 KB
testcase_70 AC 977 ms
12,856 KB
testcase_71 AC 975 ms
12,848 KB
testcase_72 AC 977 ms
12,928 KB
testcase_73 AC 976 ms
12,832 KB
testcase_74 AC 968 ms
12,928 KB
testcase_75 AC 974 ms
12,928 KB
testcase_76 AC 972 ms
13,056 KB
testcase_77 AC 982 ms
12,896 KB
testcase_78 AC 1,001 ms
12,928 KB
testcase_79 AC 968 ms
12,868 KB
testcase_80 AC 969 ms
12,928 KB
testcase_81 AC 984 ms
12,928 KB
testcase_82 AC 969 ms
12,928 KB
testcase_83 AC 971 ms
12,916 KB
testcase_84 AC 986 ms
12,928 KB
testcase_85 AC 961 ms
12,920 KB
testcase_86 AC 962 ms
12,896 KB
testcase_87 AC 968 ms
12,964 KB
testcase_88 AC 977 ms
12,928 KB
testcase_89 AC 968 ms
12,848 KB
testcase_90 AC 963 ms
12,928 KB
testcase_91 AC 975 ms
12,928 KB
testcase_92 AC 975 ms
12,928 KB
testcase_93 AC 961 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
  ll K,N;
  cin>>K>>N;
  vector<ll> A(1234567+K);
  vector<ll> B(K);
  for(int i=0;i<K;i++){
    cin>>A[i];
  }for(int i=0;i<K;i++){
    cin>>B[i];
  }
  ll INF=-1000000000000000001LL;
  ll x;
  for(int i=0;i<1234567;i++){
    x=INF;
    for(int j=0;j<K;j++){
      x=max(x,min(A[i+j],B[j]));
    }
    A[K+i]=x;
  }
  cout<<A[min(N,(1200000/K)*K+(N%K))]<<"\n";
}
0