結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 RE -
testcase_05 AC 84 ms
12,496 KB
testcase_06 AC 71 ms
11,776 KB
testcase_07 AC 77 ms
12,228 KB
testcase_08 AC 45 ms
11,008 KB
testcase_09 AC 73 ms
12,288 KB
testcase_10 AC 51 ms
11,392 KB
testcase_11 AC 64 ms
11,640 KB
testcase_12 AC 66 ms
11,264 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 104 ms
13,144 KB
testcase_23 AC 96 ms
12,892 KB
testcase_24 AC 99 ms
12,760 KB
testcase_25 AC 105 ms
12,900 KB
testcase_26 AC 110 ms
13,024 KB
testcase_27 AC 103 ms
12,756 KB
testcase_28 AC 91 ms
12,896 KB
testcase_29 AC 110 ms
12,892 KB
testcase_30 AC 85 ms
12,892 KB
testcase_31 AC 109 ms
12,888 KB
testcase_32 AC 109 ms
12,892 KB
testcase_33 AC 97 ms
12,884 KB
testcase_34 AC 99 ms
13,024 KB
testcase_35 AC 105 ms
12,904 KB
testcase_36 AC 100 ms
12,896 KB
testcase_37 AC 114 ms
13,016 KB
testcase_38 AC 108 ms
13,024 KB
testcase_39 AC 88 ms
13,024 KB
testcase_40 AC 113 ms
12,768 KB
testcase_41 AC 97 ms
12,760 KB
testcase_42 AC 119 ms
17,256 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 101 ms
12,256 KB
testcase_46 AC 93 ms
12,512 KB
testcase_47 AC 119 ms
12,256 KB
testcase_48 AC 117 ms
14,908 KB
testcase_49 AC 98 ms
14,644 KB
testcase_50 AC 119 ms
15,036 KB
testcase_51 AC 117 ms
14,908 KB
testcase_52 AC 117 ms
14,892 KB
testcase_53 RE -
testcase_54 AC 30 ms
10,624 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n, k = map(int,input().split())
a = list(map(int,input().split()))
l = 6350400
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