結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー とりゐとりゐ
提出日時 2021-10-29 05:42:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 152,192 KB
最終ジャッジ日時 2024-11-08 04:25:37
合計ジャッジ時間 9,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 360 ms
152,064 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 302 ms
118,912 KB
testcase_03 AC 300 ms
118,400 KB
testcase_04 AC 296 ms
118,272 KB
testcase_05 AC 314 ms
118,912 KB
testcase_06 AC 297 ms
118,272 KB
testcase_07 AC 296 ms
118,272 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 219 ms
104,192 KB
testcase_10 AC 250 ms
104,704 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 379 ms
152,192 KB
testcase_14 AC 377 ms
152,192 KB
testcase_15 AC 377 ms
151,936 KB
testcase_16 AC 380 ms
152,192 KB
testcase_17 AC 388 ms
152,192 KB
testcase_18 AC 183 ms
114,048 KB
testcase_19 AC 382 ms
152,064 KB
testcase_20 AC 300 ms
136,320 KB
testcase_21 AC 294 ms
136,192 KB
testcase_22 AC 290 ms
137,984 KB
testcase_23 AC 115 ms
105,728 KB
testcase_24 AC 385 ms
148,992 KB
testcase_25 AC 374 ms
151,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説用
n=int(input())
a=list(map(int,input().split()))
max_a=max(a)
cnt=[0]*(max_a+1)
for i in a:
  cnt[i]+=1
cnt_max=[0]*n
for i in range(1,max_a+1):
  m=sum(cnt[i::i])
  if m!=0:
    cnt_max[n-m]=i
ans=1
for i in range(n):
  ans=max(ans,cnt_max[i])
  print(ans)
0