結果

問題 No.1083 余りの余り
ユーザー kmjpkmjp
提出日時 2020-06-19 22:14:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 978 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 208,276 KB
実行使用メモリ 658,732 KB
最終ジャッジ日時 2024-07-03 14:53:57
合計ジャッジ時間 12,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
59,444 KB
testcase_01 AC 18 ms
52,668 KB
testcase_02 AC 19 ms
52,708 KB
testcase_03 AC 19 ms
52,536 KB
testcase_04 AC 20 ms
52,792 KB
testcase_05 AC 1,092 ms
187,632 KB
testcase_06 AC 19 ms
52,476 KB
testcase_07 AC 18 ms
52,576 KB
testcase_08 AC 20 ms
52,544 KB
testcase_09 AC 19 ms
52,628 KB
testcase_10 AC 18 ms
52,520 KB
testcase_11 AC 19 ms
52,796 KB
testcase_12 AC 20 ms
52,588 KB
testcase_13 AC 20 ms
52,612 KB
testcase_14 AC 18 ms
52,680 KB
testcase_15 AC 18 ms
52,516 KB
testcase_16 AC 19 ms
52,664 KB
testcase_17 AC 18 ms
52,580 KB
testcase_18 AC 1,107 ms
210,772 KB
testcase_19 AC 229 ms
91,252 KB
testcase_20 AC 23 ms
53,516 KB
testcase_21 AC 26 ms
54,044 KB
testcase_22 AC 18 ms
52,604 KB
testcase_23 AC 2,579 ms
397,520 KB
testcase_24 MLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,K,A[20];
set<int> S[1<<20];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) cin>>A[i];
	S[0].insert(K);
	int mask;
	FOR(mask,1<<N) {
		FOR(i,N) if((mask&(1<<i))==0) {
			FORR(s,S[mask]) S[mask|(1<<i)].insert(s%A[i]);
		}
	}
	auto it=S[(1<<N)-1].end();
	cout<<*prev(it)<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0