結果

問題 No.1083 余りの余り
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-03-30 20:29:42
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 49 ms / 3,000 ms
コード長 489 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 204,880 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 17:44:04
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
using ll = long long;
int main() {
	int N, K;cin >> N >> K;
	vector<int> A(N);
	for (int i = 0;i < N;i++) cin >> A[i];
	sort(A.begin(), A.end(), greater<int>());
	int res = 0;
	for (int bit = 1;bit < (1 << N);bit++) {
		if (!(bit & (1 << (N - 1)))) continue;
		int now = K;
		for (int i = 0;i < N;i++) if (bit & (1 << i)) now = now % A[i];
		res = max(res, now);
	}
	cout << res << endl;
}

0