結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー とりゐとりゐ
提出日時 2021-08-17 17:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-11-08 04:25:02
合計ジャッジ時間 9,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
144,256 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 287 ms
110,848 KB
testcase_03 AC 292 ms
110,592 KB
testcase_04 AC 296 ms
110,720 KB
testcase_05 AC 297 ms
110,848 KB
testcase_06 AC 291 ms
110,080 KB
testcase_07 AC 294 ms
110,848 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 226 ms
98,560 KB
testcase_10 AC 233 ms
98,560 KB
testcase_11 AC 43 ms
51,712 KB
testcase_12 AC 43 ms
51,456 KB
testcase_13 AC 375 ms
144,128 KB
testcase_14 AC 365 ms
144,000 KB
testcase_15 AC 398 ms
144,000 KB
testcase_16 AC 409 ms
144,256 KB
testcase_17 AC 406 ms
144,256 KB
testcase_18 AC 176 ms
112,384 KB
testcase_19 AC 387 ms
144,256 KB
testcase_20 AC 310 ms
130,688 KB
testcase_21 AC 306 ms
130,688 KB
testcase_22 AC 307 ms
132,352 KB
testcase_23 AC 121 ms
105,600 KB
testcase_24 AC 379 ms
141,312 KB
testcase_25 AC 381 ms
144,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=max(a)+1
d=[0]*b
for i in a:
  d[i]+=1
ans=[1]*(n)
for i in range(2,b):
  t=sum(d[i::i])
  if t!=0:
    ans[n-t]=i
for i in range(1,n):
  ans[i]=max(ans[i],ans[i-1])
for i in range(n):
  print(ans[i])
0