結果
問題 | No.1330 Multiply or Divide |
ユーザー | penguinman |
提出日時 | 2020-09-12 03:54:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 590 bytes |
コンパイル時間 | 1,840 ms |
コンパイル使用メモリ | 173,560 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 22:54:35 |
合計ジャッジ時間 | 7,096 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
ソースコード
#include<bits/stdc++.h> using std::cin; using std::cout; using std::endl; using std::vector; int main(){ int N,M; cin>>N>>M; const int max=1e5,inf=1e9; assert(1<=N&&N<=max&&1<=M&&M<=max); vector<int> A(N); int ans=0,sum=0; std::set<int> set; set.insert(M); for(int i=0;i<N;i++){ cin>>A[i]; assert(1<=A[i]&&A[i]<=inf); sum+=A[i]%M; sum%=M; ans=std::max(ans,sum+M-*set.upper_bound(sum)); set.insert(sum); } if(N>1000){ cout<<std::min(sum,M-1)<<endl; return 0; } cout<<ans<<endl; }