結果

問題 No.1036 Make One With GCD 2
ユーザー maspymaspy
提出日時 2020-04-25 16:35:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 679 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 151,980 KB
最終ジャッジ日時 2024-11-07 21:16:04
合計ジャッジ時間 47,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,236 ms
151,036 KB
testcase_01 AC 881 ms
145,952 KB
testcase_02 AC 1,089 ms
145,928 KB
testcase_03 AC 625 ms
80,184 KB
testcase_04 AC 712 ms
107,780 KB
testcase_05 AC 518 ms
44,224 KB
testcase_06 AC 518 ms
44,228 KB
testcase_07 AC 669 ms
87,796 KB
testcase_08 AC 633 ms
79,596 KB
testcase_09 AC 1,024 ms
144,372 KB
testcase_10 AC 991 ms
137,156 KB
testcase_11 AC 1,053 ms
145,524 KB
testcase_12 AC 1,005 ms
138,212 KB
testcase_13 AC 1,179 ms
140,840 KB
testcase_14 AC 1,170 ms
142,724 KB
testcase_15 AC 1,136 ms
136,104 KB
testcase_16 AC 1,142 ms
137,236 KB
testcase_17 AC 1,157 ms
139,596 KB
testcase_18 AC 519 ms
44,224 KB
testcase_19 AC 517 ms
44,208 KB
testcase_20 AC 511 ms
44,220 KB
testcase_21 AC 515 ms
44,216 KB
testcase_22 AC 1,121 ms
134,520 KB
testcase_23 AC 959 ms
111,276 KB
testcase_24 AC 1,150 ms
139,732 KB
testcase_25 AC 1,089 ms
129,912 KB
testcase_26 AC 1,100 ms
133,996 KB
testcase_27 AC 511 ms
44,088 KB
testcase_28 AC 506 ms
44,480 KB
testcase_29 AC 505 ms
44,340 KB
testcase_30 AC 503 ms
44,608 KB
testcase_31 AC 518 ms
44,096 KB
testcase_32 AC 509 ms
44,348 KB
testcase_33 AC 507 ms
44,352 KB
testcase_34 AC 508 ms
44,472 KB
testcase_35 AC 506 ms
44,356 KB
testcase_36 AC 507 ms
44,220 KB
testcase_37 AC 505 ms
44,444 KB
testcase_38 AC 1,082 ms
145,812 KB
testcase_39 AC 1,590 ms
145,996 KB
testcase_40 AC 949 ms
110,524 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
N = int(readline())
A = np.array(read().split() + [1], np.int64)

# sparse table
sp = [np.ones(N + 1, np.int64) for _ in range(20)]
sp[0] = A
for n in range(1, 20):
    dx = 1 << (n - 1)
    sp[n][:-dx] = np.gcd(sp[n - 1][:-dx], sp[n - 1][dx:])

# [L,R) の gcd は 1 ではない。のうちで R を 最大化
L = np.arange(N)
R = L.copy()
G = np.zeros(N, np.int64)
for n in range(19, -1, -1):
    G1 = np.gcd(G, sp[n][R])
    go = G1 != 1
    R[go] += 1 << n
    G[go] = G1[go]

ng = (R - L).sum()
total = N * (N + 1) // 2
print(total - ng)
0