結果

問題 No.917 Make One With GCD
ユーザー AEnAEn
提出日時 2022-11-25 11:04:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 63,132 KB
最終ジャッジ日時 2024-10-01 20:12:50
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,528 KB
testcase_01 AC 44 ms
54,904 KB
testcase_02 AC 43 ms
54,116 KB
testcase_03 AC 44 ms
54,432 KB
testcase_04 AC 43 ms
54,628 KB
testcase_05 AC 44 ms
54,588 KB
testcase_06 AC 45 ms
53,972 KB
testcase_07 AC 44 ms
54,068 KB
testcase_08 AC 43 ms
54,960 KB
testcase_09 AC 51 ms
62,116 KB
testcase_10 AC 52 ms
62,068 KB
testcase_11 AC 51 ms
62,996 KB
testcase_12 AC 51 ms
63,132 KB
testcase_13 AC 51 ms
62,700 KB
testcase_14 AC 50 ms
62,028 KB
testcase_15 AC 49 ms
61,296 KB
testcase_16 AC 50 ms
62,124 KB
testcase_17 AC 42 ms
54,356 KB
testcase_18 AC 43 ms
54,848 KB
testcase_19 AC 42 ms
54,720 KB
testcase_20 AC 42 ms
54,432 KB
testcase_21 AC 43 ms
55,488 KB
testcase_22 AC 43 ms
53,692 KB
testcase_23 AC 44 ms
55,152 KB
testcase_24 AC 44 ms
55,520 KB
testcase_25 AC 44 ms
55,168 KB
testcase_26 AC 43 ms
53,984 KB
testcase_27 AC 43 ms
55,028 KB
testcase_28 AC 43 ms
54,744 KB
testcase_29 AC 44 ms
53,912 KB
testcase_30 AC 44 ms
54,692 KB
testcase_31 AC 44 ms
54,928 KB
testcase_32 AC 43 ms
54,588 KB
testcase_33 AC 43 ms
55,360 KB
testcase_34 AC 44 ms
54,520 KB
testcase_35 AC 43 ms
54,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import gcd

N = int(input())
a = list(map(int, input().split()))
d = defaultdict(int)
d[a[0]] = 1
for i in range(1,N):
    nex = defaultdict(int)
    nex[a[i]] = 1
    for key in d.keys():
        nex[gcd(a[i],key)]+=d[key]
        nex[key]+=d[key]
    d = nex
print(d[1])

0