結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,213 ms
156,152 KB
testcase_01 AC 844 ms
149,812 KB
testcase_02 AC 1,057 ms
149,592 KB
testcase_03 AC 609 ms
81,452 KB
testcase_04 AC 689 ms
109,672 KB
testcase_05 AC 505 ms
44,200 KB
testcase_06 AC 508 ms
43,940 KB
testcase_07 AC 649 ms
88,432 KB
testcase_08 AC 627 ms
80,352 KB
testcase_09 AC 1,009 ms
147,720 KB
testcase_10 AC 983 ms
139,684 KB
testcase_11 AC 1,026 ms
149,908 KB
testcase_12 AC 969 ms
140,408 KB
testcase_13 AC 1,133 ms
145,100 KB
testcase_14 AC 1,137 ms
145,884 KB
testcase_15 AC 1,103 ms
139,620 KB
testcase_16 AC 1,114 ms
139,692 KB
testcase_17 AC 1,121 ms
143,824 KB
testcase_18 AC 509 ms
43,824 KB
testcase_19 AC 510 ms
44,204 KB
testcase_20 AC 508 ms
43,824 KB
testcase_21 AC 506 ms
43,948 KB
testcase_22 AC 1,088 ms
139,052 KB
testcase_23 AC 935 ms
113,004 KB
testcase_24 AC 1,103 ms
142,068 KB
testcase_25 AC 1,060 ms
132,428 KB
testcase_26 AC 1,125 ms
137,288 KB
testcase_27 AC 507 ms
44,328 KB
testcase_28 AC 498 ms
44,424 KB
testcase_29 AC 498 ms
44,336 KB
testcase_30 AC 502 ms
44,284 KB
testcase_31 AC 525 ms
44,324 KB
testcase_32 AC 525 ms
44,196 KB
testcase_33 AC 529 ms
43,816 KB
testcase_34 AC 502 ms
44,188 KB
testcase_35 AC 505 ms
44,204 KB
testcase_36 AC 511 ms
43,816 KB
testcase_37 AC 506 ms
44,192 KB
testcase_38 AC 1,053 ms
150,076 KB
testcase_39 AC 1,574 ms
149,800 KB
testcase_40 AC 937 ms
114,264 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import *
N=int(input())
A=int64(input().split()+[1])
s=ones((20,N+1),int64)
s[0]=A
for n in range(19):
  d=1<<n
  s[n+1,:-d]=gcd(s[n,:-d],s[n,d:])
L=arange(N)
R=copy(L)
G=zeros(N,int64)
for n in range(19, -1, -1):
  H=gcd(G,s[n][R])
  g=H!=1
  R[g]+=1<<n
  G[g]=H[g]
print(N*(N+1)//2-sum(R-L))
0