結果
問題 | No.1083 余りの余り |
ユーザー | Ricky_pon |
提出日時 | 2020-06-19 22:12:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,166 bytes |
コンパイル時間 | 2,042 ms |
コンパイル使用メモリ | 200,424 KB |
実行使用メモリ | 11,800 KB |
最終ジャッジ日時 | 2024-07-03 14:52:19 |
合計ジャッジ時間 | 4,346 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,768 KB |
testcase_01 | AC | 5 ms
11,616 KB |
testcase_02 | AC | 5 ms
11,640 KB |
testcase_03 | AC | 5 ms
11,632 KB |
testcase_04 | WA | - |
testcase_05 | AC | 45 ms
11,624 KB |
testcase_06 | AC | 5 ms
11,672 KB |
testcase_07 | AC | 6 ms
11,632 KB |
testcase_08 | AC | 5 ms
11,548 KB |
testcase_09 | AC | 5 ms
11,708 KB |
testcase_10 | AC | 5 ms
11,684 KB |
testcase_11 | WA | - |
testcase_12 | AC | 5 ms
11,492 KB |
testcase_13 | AC | 6 ms
11,680 KB |
testcase_14 | AC | 5 ms
11,600 KB |
testcase_15 | AC | 5 ms
11,616 KB |
testcase_16 | AC | 5 ms
11,784 KB |
testcase_17 | AC | 5 ms
11,612 KB |
testcase_18 | WA | - |
testcase_19 | AC | 45 ms
11,576 KB |
testcase_20 | AC | 5 ms
11,632 KB |
testcase_21 | AC | 9 ms
11,608 KB |
testcase_22 | AC | 5 ms
11,604 KB |
testcase_23 | AC | 178 ms
11,708 KB |
testcase_24 | AC | 177 ms
11,604 KB |
testcase_25 | AC | 178 ms
11,640 KB |
testcase_26 | AC | 179 ms
11,660 KB |
testcase_27 | AC | 5 ms
11,692 KB |
testcase_28 | WA | - |
testcase_29 | AC | 5 ms
11,648 KB |
testcase_30 | AC | 5 ms
11,596 KB |
testcase_31 | AC | 5 ms
11,624 KB |
testcase_32 | AC | 5 ms
11,604 KB |
testcase_33 | AC | 178 ms
11,640 KB |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for(int (i)=(int)(a); (i)<(int)(b); ++(i)) #define rFor(i, a, b) for(int (i)=(int)(a)-1; (i)>=(int)(b); --(i)) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair<int, int> pii; typedef pair<lint, lint> pll; template<class T> bool chmax(T &a, const T &b){if(a<b){a=b; return true;} return false;} template<class T> bool chmin(T &a, const T &b){if(a>b){a=b; return true;} return false;} template<class T> T div_floor(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>=0 ? a/b : (a+1)/b-1; } template<class T> T div_ceil(T a, T b){ if(b < 0) a *= -1, b *= -1; return a>0 ? (a-1)/b+1 : a/b; } constexpr lint mod = 1e9+7; constexpr lint INF = mod * mod; constexpr int MAX = 200010; lint dp[1<<20]; int main(){ lint n,k; cin>>n>>k; lint a[n]; rep(i,n) cin>>a[i]; memset(dp,0,sizeof(dp)); dp[0]=k; rep(S,1<<n){ rep(i,n)if(!(S>>i&1)){ chmax(dp[S|(1<<i)], dp[S]%a[i]); } } cout<<dp[(1<<n)-1]<<endl; }