結果

問題 No.917 Make One With GCD
ユーザー shotoyooshotoyoo
提出日時 2021-07-22 10:46:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 494 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 66,892 KB
最終ジャッジ日時 2024-07-17 14:37:00
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,684 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 37 ms
52,888 KB
testcase_04 AC 36 ms
53,680 KB
testcase_05 AC 37 ms
54,288 KB
testcase_06 RE -
testcase_07 AC 37 ms
53,000 KB
testcase_08 RE -
testcase_09 AC 43 ms
59,520 KB
testcase_10 AC 43 ms
60,272 KB
testcase_11 AC 42 ms
59,212 KB
testcase_12 AC 42 ms
59,492 KB
testcase_13 AC 42 ms
60,132 KB
testcase_14 AC 41 ms
59,248 KB
testcase_15 AC 42 ms
60,744 KB
testcase_16 AC 42 ms
60,260 KB
testcase_17 AC 37 ms
52,740 KB
testcase_18 AC 38 ms
52,744 KB
testcase_19 AC 37 ms
53,600 KB
testcase_20 AC 36 ms
53,628 KB
testcase_21 AC 37 ms
53,056 KB
testcase_22 AC 37 ms
52,828 KB
testcase_23 AC 37 ms
53,056 KB
testcase_24 AC 38 ms
54,176 KB
testcase_25 AC 41 ms
59,696 KB
testcase_26 AC 37 ms
52,068 KB
testcase_27 AC 37 ms
53,632 KB
testcase_28 AC 38 ms
53,236 KB
testcase_29 RE -
testcase_30 AC 38 ms
52,804 KB
testcase_31 RE -
testcase_32 AC 38 ms
52,940 KB
testcase_33 AC 37 ms
53,624 KB
testcase_34 RE -
testcase_35 AC 37 ms
52,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
a = list(map(int, input().split()))
d = {0:1}
from math import gcd
for i in range(n):
    v = a[i]
    nd = dict(d)
    for k,val in d.items():
        nk = gcd(k, v)
        nd.setdefault(nk, 0)
        nd[nk] += val
    d = nd
ans = d[1]
print(ans)
0