結果

問題 No.1036 Make One With GCD 2
ユーザー maspymaspy
提出日時 2020-05-09 05:26:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,176 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 73,340 KB
最終ジャッジ日時 2024-09-16 14:20:32
合計ジャッジ時間 29,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
65,404 KB
testcase_01 AC 994 ms
41,916 KB
testcase_02 AC 694 ms
73,340 KB
testcase_03 AC 459 ms
14,992 KB
testcase_04 AC 796 ms
18,104 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 435 ms
24,124 KB
testcase_08 AC 364 ms
21,584 KB
testcase_09 AC 1,015 ms
56,676 KB
testcase_10 AC 956 ms
53,524 KB
testcase_11 AC 1,039 ms
57,356 KB
testcase_12 AC 978 ms
53,636 KB
testcase_13 AC 1,176 ms
62,852 KB
testcase_14 AC 1,165 ms
63,356 KB
testcase_15 AC 1,097 ms
60,216 KB
testcase_16 AC 1,111 ms
60,700 KB
testcase_17 AC 1,140 ms
62,192 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 35 ms
10,880 KB
testcase_20 AC 39 ms
10,752 KB
testcase_21 AC 38 ms
11,136 KB
testcase_22 AC 1,089 ms
59,388 KB
testcase_23 AC 808 ms
46,696 KB
testcase_24 AC 1,119 ms
61,448 KB
testcase_25 AC 1,057 ms
57,128 KB
testcase_26 AC 1,071 ms
58,740 KB
testcase_27 AC 29 ms
10,496 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,880 KB
testcase_32 AC 28 ms
10,624 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 30 ms
10,496 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 29 ms
10,496 KB
testcase_37 AC 29 ms
10,752 KB
testcase_38 AC 640 ms
65,400 KB
testcase_39 AC 734 ms
65,660 KB
testcase_40 AC 803 ms
46,576 KB
testcase_41 AC 906 ms
65,664 KB
testcase_42 AC 890 ms
65,660 KB
testcase_43 AC 877 ms
65,660 KB
testcase_44 AC 878 ms
65,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
import itertools

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N,*A = map(int, read().split())

A = [0] + A + [1]

stack = [0]
r = 0
rv = 0
answer = 0
for l in range(1, N+1):
    stack.pop()
    if not stack:
        stack = [0] + list(itertools.accumulate(itertools.chain(A[r:l-1:-1]), gcd))
        rv = 0
    x = stack[-1]
    while gcd(x, rv) != 1:
        r += 1
        rv = gcd(rv, A[r])
    answer += N+1-r

print(answer)
0