結果

問題 No.1501 酔歩
ユーザー 遭難者遭難者
提出日時 2021-05-07 13:18:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,320 KB
最終ジャッジ日時 2024-09-15 01:48:18
合計ジャッジ時間 5,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 84 ms
12,492 KB
testcase_06 AC 71 ms
12,032 KB
testcase_07 AC 78 ms
12,484 KB
testcase_08 AC 46 ms
11,136 KB
testcase_09 AC 74 ms
12,544 KB
testcase_10 AC 51 ms
11,520 KB
testcase_11 AC 65 ms
12,160 KB
testcase_12 AC 67 ms
11,760 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 103 ms
12,992 KB
testcase_23 AC 96 ms
13,104 KB
testcase_24 AC 100 ms
12,976 KB
testcase_25 AC 106 ms
13,000 KB
testcase_26 AC 112 ms
12,852 KB
testcase_27 AC 102 ms
12,976 KB
testcase_28 AC 91 ms
12,848 KB
testcase_29 AC 112 ms
12,976 KB
testcase_30 AC 85 ms
12,868 KB
testcase_31 AC 111 ms
12,992 KB
testcase_32 AC 107 ms
12,992 KB
testcase_33 AC 96 ms
12,988 KB
testcase_34 AC 101 ms
12,848 KB
testcase_35 AC 104 ms
12,976 KB
testcase_36 AC 99 ms
12,868 KB
testcase_37 AC 113 ms
12,976 KB
testcase_38 AC 110 ms
12,868 KB
testcase_39 AC 87 ms
12,852 KB
testcase_40 AC 107 ms
12,848 KB
testcase_41 AC 97 ms
12,848 KB
testcase_42 AC 120 ms
17,320 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 101 ms
12,512 KB
testcase_46 AC 92 ms
12,636 KB
testcase_47 AC 117 ms
12,512 KB
testcase_48 AC 117 ms
15,160 KB
testcase_49 AC 100 ms
15,028 KB
testcase_50 AC 116 ms
15,156 KB
testcase_51 AC 116 ms
14,904 KB
testcase_52 AC 119 ms
14,892 KB
testcase_53 AC 31 ms
10,880 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n, k = map(int,input().split())
a = list(map(int,input().split()))
l = 6350400
if(n == 1):
  print("1/1")
  exit()
p = q = 0
for i in range(k - 1):
  p += l // (a[i] * a[i + 1])
for i in range(n - 1):
  q += l // (a[i] * a[i + 1])
l = math.gcd(p, q)
p //= l
q //= l
print(str(p) + '/' + str(q))
0