結果
| 問題 | No.736 約比 | 
| コンテスト | |
| ユーザー |  💕💖💞 | 
| 提出日時 | 2018-10-02 16:10:14 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 233 bytes | 
| コンパイル時間 | 94 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 11,392 KB | 
| 最終ジャッジ日時 | 2024-10-12 10:04:00 | 
| 合計ジャッジ時間 | 4,237 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 65 | 
ソースコード
from fractions import gcd n = int(input()) xs = [int(x) for x in input().split()] gcd_val = gcd(xs[0], xs[1]) for x in xs[2:]: gcd_val = gcd(gcd_val, x) #print(gcd_val) xs = [str(x//gcd_val) for x in xs] print( ':'.join(xs) )
