結果

問題 No.736 約比
ユーザー O2MTO2MT
提出日時 2021-06-07 17:28:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 62,672 KB
最終ジャッジ日時 2024-11-24 22:40:39
合計ジャッジ時間 5,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,612 KB
testcase_01 AC 42 ms
61,128 KB
testcase_02 AC 42 ms
60,168 KB
testcase_03 AC 47 ms
60,760 KB
testcase_04 AC 50 ms
60,540 KB
testcase_05 AC 43 ms
60,760 KB
testcase_06 AC 41 ms
61,688 KB
testcase_07 AC 57 ms
61,736 KB
testcase_08 AC 50 ms
60,672 KB
testcase_09 AC 47 ms
60,716 KB
testcase_10 AC 59 ms
61,300 KB
testcase_11 AC 63 ms
62,316 KB
testcase_12 AC 54 ms
61,692 KB
testcase_13 AC 57 ms
60,908 KB
testcase_14 AC 46 ms
61,788 KB
testcase_15 AC 54 ms
61,564 KB
testcase_16 AC 45 ms
60,168 KB
testcase_17 AC 58 ms
61,092 KB
testcase_18 AC 58 ms
60,672 KB
testcase_19 AC 51 ms
60,432 KB
testcase_20 AC 54 ms
61,492 KB
testcase_21 AC 51 ms
61,952 KB
testcase_22 AC 40 ms
60,108 KB
testcase_23 AC 39 ms
61,784 KB
testcase_24 AC 51 ms
61,800 KB
testcase_25 AC 40 ms
61,188 KB
testcase_26 AC 38 ms
60,740 KB
testcase_27 AC 54 ms
62,096 KB
testcase_28 AC 55 ms
60,608 KB
testcase_29 AC 39 ms
60,612 KB
testcase_30 AC 53 ms
61,080 KB
testcase_31 AC 38 ms
60,876 KB
testcase_32 AC 37 ms
61,992 KB
testcase_33 AC 53 ms
61,000 KB
testcase_34 AC 37 ms
60,468 KB
testcase_35 AC 38 ms
61,020 KB
testcase_36 AC 53 ms
60,640 KB
testcase_37 AC 53 ms
60,520 KB
testcase_38 AC 60 ms
61,616 KB
testcase_39 AC 43 ms
61,616 KB
testcase_40 AC 57 ms
60,568 KB
testcase_41 AC 57 ms
60,060 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 47 ms
61,500 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 55 ms
60,696 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 44 ms
61,944 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 56 ms
61,952 KB
testcase_62 AC 39 ms
61,064 KB
testcase_63 AC 38 ms
61,124 KB
testcase_64 AC 39 ms
60,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
l = []
for a in A:
  l.append(a)
for i in range(2,10001):
  num = float('inf')
  flg = False
  for j in range(N):
    if l[j]%i != 0:
      flg = True
  if flg:
    continue
  for j in range(N):
    l[j] //= i
ans = ''
for i in range(N):
  ans += str(l[i])
  if i != N-1:
    ans += ':'
print(ans)
0