結果

問題 No.1083 余りの余り
ユーザー しもりん
提出日時 2024-10-25 17:38:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-25 17:38:09
合計ジャッジ時間 2,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 27 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
M=1<<N
L=[K]
for a in A[N:1:-1]:
	for x in L[:]:
		if x>a:
			L.append(x%a)
ans=0
for x in L:
	alt=x%A[0]
	if ans<alt:
		ans=alt
print(ans)
0