結果
問題 | No.736 約比 |
ユーザー |
|
提出日時 | 2023-06-06 21:57:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 186 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,480 KB |
最終ジャッジ日時 | 2024-12-29 08:49:44 |
合計ジャッジ時間 | 4,690 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 65 |
ソースコード
import mathn = int(input())a = list(map(int, input().split()))g = a[0]for i in range(1, n):g = math.gcd(g, a[i])for i in range(n):a[i] //= gprint(':'.join(list(map(str, a))))