結果

問題 No.1083 余りの余り
ユーザー 👑 kmjpkmjp
提出日時 2020-06-19 22:14:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 978 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 206,236 KB
実行使用メモリ 742,180 KB
最終ジャッジ日時 2023-09-16 14:33:37
合計ジャッジ時間 12,746 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
52,512 KB
testcase_01 AC 20 ms
52,696 KB
testcase_02 AC 20 ms
52,552 KB
testcase_03 AC 20 ms
52,508 KB
testcase_04 AC 21 ms
52,904 KB
testcase_05 AC 1,105 ms
187,460 KB
testcase_06 AC 19 ms
52,516 KB
testcase_07 AC 20 ms
52,580 KB
testcase_08 AC 20 ms
52,520 KB
testcase_09 AC 20 ms
52,460 KB
testcase_10 AC 20 ms
52,724 KB
testcase_11 AC 20 ms
52,588 KB
testcase_12 AC 20 ms
52,500 KB
testcase_13 AC 21 ms
52,496 KB
testcase_14 AC 21 ms
52,500 KB
testcase_15 AC 21 ms
52,476 KB
testcase_16 AC 20 ms
52,504 KB
testcase_17 AC 20 ms
52,508 KB
testcase_18 AC 1,133 ms
210,824 KB
testcase_19 AC 243 ms
91,080 KB
testcase_20 AC 25 ms
53,408 KB
testcase_21 AC 28 ms
54,228 KB
testcase_22 AC 20 ms
52,556 KB
testcase_23 AC 2,700 ms
397,348 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