結果

問題 No.917 Make One With GCD
ユーザー shotoyooshotoyoo
提出日時 2021-07-22 10:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 60,292 KB
最終ジャッジ日時 2024-07-17 14:37:06
合計ジャッジ時間 2,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,596 KB
testcase_01 AC 37 ms
53,108 KB
testcase_02 AC 38 ms
53,808 KB
testcase_03 AC 37 ms
53,504 KB
testcase_04 AC 39 ms
52,188 KB
testcase_05 AC 38 ms
52,588 KB
testcase_06 AC 37 ms
53,680 KB
testcase_07 AC 38 ms
52,328 KB
testcase_08 AC 38 ms
53,508 KB
testcase_09 AC 42 ms
59,920 KB
testcase_10 AC 43 ms
59,808 KB
testcase_11 AC 42 ms
59,396 KB
testcase_12 AC 44 ms
59,032 KB
testcase_13 AC 43 ms
58,992 KB
testcase_14 AC 44 ms
60,068 KB
testcase_15 AC 43 ms
58,960 KB
testcase_16 AC 42 ms
60,292 KB
testcase_17 AC 37 ms
52,740 KB
testcase_18 AC 38 ms
52,956 KB
testcase_19 AC 38 ms
52,556 KB
testcase_20 AC 37 ms
53,508 KB
testcase_21 AC 38 ms
52,792 KB
testcase_22 AC 38 ms
54,052 KB
testcase_23 AC 38 ms
54,488 KB
testcase_24 AC 37 ms
52,592 KB
testcase_25 AC 42 ms
60,000 KB
testcase_26 AC 37 ms
52,868 KB
testcase_27 AC 38 ms
52,836 KB
testcase_28 AC 37 ms
53,200 KB
testcase_29 AC 38 ms
52,700 KB
testcase_30 AC 37 ms
52,384 KB
testcase_31 AC 38 ms
52,564 KB
testcase_32 AC 38 ms
52,216 KB
testcase_33 AC 38 ms
53,824 KB
testcase_34 AC 37 ms
53,120 KB
testcase_35 AC 38 ms
52,592 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.get(1,0)
print(ans)
0