結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー るさるさ
提出日時 2021-08-17 19:09:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 211,072 KB
最終ジャッジ日時 2024-11-08 04:25:26
合計ジャッジ時間 20,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 795 ms
204,032 KB
testcase_01 AC 712 ms
195,584 KB
testcase_02 AC 655 ms
195,456 KB
testcase_03 AC 650 ms
195,840 KB
testcase_04 AC 639 ms
195,840 KB
testcase_05 AC 648 ms
195,712 KB
testcase_06 AC 673 ms
195,584 KB
testcase_07 AC 675 ms
195,584 KB
testcase_08 AC 666 ms
196,096 KB
testcase_09 AC 647 ms
195,840 KB
testcase_10 AC 659 ms
195,840 KB
testcase_11 AC 661 ms
195,840 KB
testcase_12 AC 672 ms
195,456 KB
testcase_13 AC 726 ms
204,080 KB
testcase_14 AC 739 ms
204,332 KB
testcase_15 AC 734 ms
203,960 KB
testcase_16 AC 739 ms
204,212 KB
testcase_17 AC 742 ms
204,208 KB
testcase_18 AC 730 ms
204,080 KB
testcase_19 AC 716 ms
204,720 KB
testcase_20 AC 713 ms
204,588 KB
testcase_21 AC 693 ms
204,588 KB
testcase_22 AC 704 ms
204,720 KB
testcase_23 AC 698 ms
211,072 KB
testcase_24 AC 688 ms
211,072 KB
testcase_25 AC 682 ms
204,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
b=8**7
c=[0]*b
for i in input().split():c[int(i)]+=1
d=[0]*b
for i in range(1,b):d[n-sum(c[i::i])]=i
m=0
for i in range(n):print(m:=max(m,d[i]))
0