結果
| 問題 |
No.1730 GCD on Blackboard in yukicoder
|
| コンテスト | |
| ユーザー |
SidewaysOwl
|
| 提出日時 | 2021-11-05 22:04:54 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 536 bytes |
| コンパイル時間 | 271 ms |
| コンパイル使用メモリ | 82,196 KB |
| 実行使用メモリ | 121,204 KB |
| 最終ジャッジ日時 | 2024-11-06 12:56:01 |
| 合計ジャッジ時間 | 6,831 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 2 |
| other | TLE * 1 -- * 23 |
ソースコード
n = int(input())
a = list(map(int,input().split()))
from collections import defaultdict
d = defaultdict(int)
import math
# ans = a[0]
for i in range(n):
l = set()
j = 1
while j ** 2 <= a[i]:
if a[i] % j == 0:
if not j ** 2 == a[i]:
d[j] += 1
d[a[i]//j] += 1
else:
d[j] += 1
j += 1
d2 = defaultdict(int)
for k in d.keys():
d2[d[k]] = max(d2[d[k]],k)
ans = 1
for i in range(n):
if (n-i) in d2:
ans = d2[n-i]
print(ans)
SidewaysOwl