結果

問題 No.1036 Make One With GCD 2
ユーザー Kiri8128Kiri8128
提出日時 2020-04-24 23:11:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,797 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 232,724 KB
最終ジャッジ日時 2024-09-16 13:30:40
合計ジャッジ時間 35,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
228,728 KB
testcase_01 AC 933 ms
215,784 KB
testcase_02 AC 934 ms
216,020 KB
testcase_03 AC 340 ms
116,132 KB
testcase_04 AC 548 ms
150,444 KB
testcase_05 AC 37 ms
53,360 KB
testcase_06 AC 37 ms
53,076 KB
testcase_07 AC 420 ms
118,892 KB
testcase_08 AC 356 ms
118,784 KB
testcase_09 AC 1,071 ms
212,600 KB
testcase_10 AC 1,026 ms
199,600 KB
testcase_11 AC 1,120 ms
214,780 KB
testcase_12 AC 1,084 ms
200,596 KB
testcase_13 AC 1,219 ms
220,156 KB
testcase_14 AC 1,276 ms
226,864 KB
testcase_15 AC 1,275 ms
212,032 KB
testcase_16 AC 1,181 ms
213,064 KB
testcase_17 AC 1,209 ms
218,128 KB
testcase_18 AC 64 ms
76,716 KB
testcase_19 AC 66 ms
76,616 KB
testcase_20 AC 69 ms
76,996 KB
testcase_21 AC 68 ms
76,640 KB
testcase_22 AC 1,144 ms
210,704 KB
testcase_23 AC 865 ms
168,812 KB
testcase_24 AC 1,194 ms
217,144 KB
testcase_25 AC 1,079 ms
198,356 KB
testcase_26 AC 1,174 ms
206,292 KB
testcase_27 AC 38 ms
53,004 KB
testcase_28 AC 38 ms
53,320 KB
testcase_29 AC 38 ms
54,268 KB
testcase_30 AC 37 ms
53,728 KB
testcase_31 AC 44 ms
62,308 KB
testcase_32 AC 44 ms
61,840 KB
testcase_33 AC 36 ms
53,080 KB
testcase_34 AC 43 ms
62,396 KB
testcase_35 AC 37 ms
52,480 KB
testcase_36 AC 36 ms
52,544 KB
testcase_37 AC 36 ms
53,272 KB
testcase_38 AC 915 ms
232,568 KB
testcase_39 AC 1,027 ms
232,428 KB
testcase_40 AC 844 ms
168,448 KB
testcase_41 AC 1,797 ms
232,492 KB
testcase_42 AC 1,776 ms
232,724 KB
testcase_43 AC 1,586 ms
232,472 KB
testcase_44 AC 1,722 ms
232,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while b: a, b = b, a % b
    return a

N = int(input())
A = [int(a) for a in input().split()]
nn = (N - 1).bit_length()
X = [A] + [[0] * N for _ in range(nn)]

for i in range(nn):
    for j in range(N - (1 << i + 1) + 1):
        X[i+1][j] = gcd(X[i][j], X[i][j + (1 << i)])

def calc(i, j):
    if i == j: return 0
    a = (i - j).bit_length() - 1
    return gcd(X[a][j], X[a][i-(1<<a)])

j = 0
ans = 0
for i in range(1, N + 1):
    while calc(i, j) == 1:
        j += 1
    ans += i - j

print(N * (N + 1) // 2 - ans)
0