結果

問題 No.917 Make One With GCD
ユーザー finefine
提出日時 2019-09-13 14:29:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 69,412 KB
最終ジャッジ日時 2024-06-24 11:03:02
合計ジャッジ時間 3,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,396 KB
testcase_01 AC 47 ms
61,636 KB
testcase_02 AC 46 ms
61,084 KB
testcase_03 AC 46 ms
60,960 KB
testcase_04 AC 51 ms
61,184 KB
testcase_05 AC 48 ms
60,984 KB
testcase_06 AC 46 ms
61,176 KB
testcase_07 AC 49 ms
60,728 KB
testcase_08 AC 47 ms
60,800 KB
testcase_09 AC 60 ms
68,212 KB
testcase_10 AC 61 ms
67,952 KB
testcase_11 AC 60 ms
68,552 KB
testcase_12 AC 60 ms
69,412 KB
testcase_13 AC 59 ms
68,548 KB
testcase_14 AC 61 ms
67,588 KB
testcase_15 AC 60 ms
68,412 KB
testcase_16 AC 59 ms
67,300 KB
testcase_17 AC 47 ms
61,660 KB
testcase_18 AC 50 ms
62,312 KB
testcase_19 AC 48 ms
60,940 KB
testcase_20 AC 48 ms
61,056 KB
testcase_21 AC 50 ms
61,980 KB
testcase_22 AC 48 ms
60,904 KB
testcase_23 AC 52 ms
63,444 KB
testcase_24 AC 50 ms
62,176 KB
testcase_25 AC 54 ms
64,112 KB
testcase_26 AC 48 ms
60,520 KB
testcase_27 AC 47 ms
61,060 KB
testcase_28 AC 45 ms
60,916 KB
testcase_29 AC 47 ms
61,044 KB
testcase_30 AC 48 ms
60,296 KB
testcase_31 AC 48 ms
60,408 KB
testcase_32 AC 48 ms
61,004 KB
testcase_33 AC 48 ms
61,120 KB
testcase_34 AC 48 ms
60,456 KB
testcase_35 AC 47 ms
61,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict
from copy import deepcopy

def main():
	n = int(input())
	a = list(map(int, input().split()))

	dp = defaultdict(int)

	for x in a:
		new_dp = deepcopy(dp)
		for k, v in dp.items():
			new_dp[math.gcd(k, x)] += v

		new_dp[x] += 1
		dp = new_dp

	print(dp[1])

if __name__ == "__main__":
	main()
0