結果
| 問題 |
No.1632 Sorting Integers (GCD of M)
|
| コンテスト | |
| ユーザー |
mkawa2
|
| 提出日時 | 2021-07-31 15:42:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,252 bytes |
| コンパイル時間 | 1,292 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,952 KB |
| 最終ジャッジ日時 | 2024-09-16 09:33:39 |
| 合計ジャッジ時間 | 6,505 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 39 WA * 16 TLE * 1 -- * 3 |
ソースコード
import sys
# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7
from itertools import permutations
from math import gcd
n = II()
ac = LI()
if n < 8:
aa = []
for a, c in enumerate(ac, 1):
aa += [str(a)]*c
ans = 0
for dd in permutations(aa):
cur = int("".join(dd))
ans = gcd(ans, cur)
print(ans)
exit()
aa, cc = [], []
for a, c in enumerate(ac, 1):
if c:
aa.append(a)
cc.append(c)
if len(aa) == 1:
ans = 1
for _ in range(n):
ans = (ans*10+1)%md
print(ans*aa[0]%md)
exit()
g = 0
for a in aa: g = gcd(g, a)
s = 0
for a, c in zip(aa, cc):
s += a*c
if s%9 == 0: g *= 9
elif s%3 == 0: g *= 3
print(g)
mkawa2