結果
問題 | No.1083 余りの余り |
ユーザー | k10c |
提出日時 | 2020-06-20 17:15:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 105 ms / 3,000 ms |
コード長 | 2,842 bytes |
コンパイル時間 | 1,939 ms |
コンパイル使用メモリ | 206,580 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 17:27:07 |
合計ジャッジ時間 | 3,575 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 26 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 49 ms
5,376 KB |
testcase_19 | AC | 27 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 101 ms
5,376 KB |
testcase_24 | AC | 100 ms
5,376 KB |
testcase_25 | AC | 105 ms
5,376 KB |
testcase_26 | AC | 101 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 100 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 97 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define reps(i, n) for(int i=1, i##_len=(n); i<=i##_len; ++i) #define rrep(i, n) for(int i=((int)(n)-1); i>=0; --i) #define rreps(i, n) for(int i=((int)(n)); i>0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define sz(x) ((int)(x).size()) #define pl(s) cout << (s) << "\n"; #define pls(...) {bool space = false; for(auto i : __VA_ARGS__) (cout << (space?" ":"") << i), space = true; cout << "\n";} #define plexit(s) {cout << (s) << "\n"; exit(0);} #define yes(s) cout << ((s)?"Yes":"No") << "\n"; #define pb push_back #define pcnt __builtin_popcountll template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #ifdef __LOCAL #include <dump.hpp> #define dump(...) \ DUMPOUT << " " << string(#__VA_ARGS__) << ": " \ << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" \ << endl \ << " ", \ dump_func(__VA_ARGS__) #else #define dump(...) #endif struct IOInit { static constexpr int IOS_PREC = 15; static constexpr bool AUTOFLUSH = false; IOInit() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(IOS_PREC); dump(IOS_PREC); if(AUTOFLUSH) cout << unitbuf; } } IO_INIT; using i64 = std::int_fast64_t; using i128 = __int128_t; using ll = long long; using ull = unsigned long long; using ld = long double; using pii = std::pair<int, int>; using pll = std::pair<ll, ll>; using vi = std::vector<int>; using vvi = std::vector<vector<int>>; using vl = std::vector<ll>; using vp = std::vector<pii>; constexpr int INFINT = (1 << 30) - 1; // 1.07x10^ 9 constexpr int INFINT_LIM = (1LL << 31) - 1; // 2.15x10^ 9 constexpr ll INFLL = 1LL << 60; // 1.15x10^18 constexpr ll INFLL_LIM = (1LL << 62) - 1 + (1LL << 62); // 9.22x10^18 constexpr ld eps = 1e-6; constexpr ll MOD = 1000000007; constexpr ld PI = 3.141592653589793238462643383279; constexpr int dx4[4] = {1, 0, -1, 0}; constexpr int dy4[4] = {0, 1, 0, -1}; constexpr int dx8[8] = {1, 0, -1, 0, 1, -1, -1, 1}; constexpr int dy8[8] = {0, 1, 0, -1, 1, 1, -1, -1}; signed main(void) { int N, K; cin >> N >> K; vi a(N); rep(i,N) cin >> a[i]; sort(rall(a)); int ans = 0; for(int bit=1; bit<(1<<N); ++bit) { int x = K; rep(i,N) { if ((bit>>i)&1) x %= a[i]; } x %= a[N-1]; chmax(ans,x); } pl(ans); return 0; }