結果

問題 No.1083 余りの余り
ユーザー しもりんしもりん
提出日時 2024-10-25 17:27:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,704 KB
最終ジャッジ日時 2024-10-25 17:28:05
合計ジャッジ時間 13,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,704 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 1,651 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 TLE -
testcase_19 AC 1,735 ms
11,008 KB
testcase_20 AC 48 ms
10,880 KB
testcase_21 AC 196 ms
10,880 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop,heapify
from bisect import bisect,bisect_left
from itertools import product,permutations,combinations,combinations_with_replacement
from math import gcd
import sys
from functools import lru_cache
if len(sys.argv)==2:sys.stdin=open(sys.argv[1])
input=sys.stdin.readline
sys.setrecursionlimit(10**9)

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
M=1<<N
ans=0
for i in range(M):
	X=K
	j=0
	while i>0:
		if i&1:
			X%=A[-j]
		i>>=1
		j+=1
	X%=A[0]
	if ans<X:
		ans=X
print(ans)
0