結果

問題 No.1501 酔歩
ユーザー H3PO4H3PO4
提出日時 2023-10-08 10:21:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,520 KB
最終ジャッジ日時 2024-07-26 18:05:01
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 80 ms
15,620 KB
testcase_06 AC 69 ms
14,492 KB
testcase_07 AC 75 ms
15,572 KB
testcase_08 AC 40 ms
11,904 KB
testcase_09 AC 71 ms
14,944 KB
testcase_10 AC 44 ms
12,540 KB
testcase_11 AC 65 ms
14,568 KB
testcase_12 AC 53 ms
13,504 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 92 ms
17,000 KB
testcase_23 AC 94 ms
17,120 KB
testcase_24 AC 98 ms
17,132 KB
testcase_25 AC 94 ms
17,000 KB
testcase_26 AC 95 ms
17,140 KB
testcase_27 AC 91 ms
16,992 KB
testcase_28 AC 90 ms
17,000 KB
testcase_29 AC 93 ms
16,992 KB
testcase_30 AC 94 ms
17,132 KB
testcase_31 AC 91 ms
17,120 KB
testcase_32 AC 89 ms
17,128 KB
testcase_33 AC 91 ms
16,996 KB
testcase_34 AC 90 ms
16,940 KB
testcase_35 AC 95 ms
17,004 KB
testcase_36 AC 93 ms
17,132 KB
testcase_37 AC 96 ms
16,996 KB
testcase_38 AC 91 ms
17,000 KB
testcase_39 AC 95 ms
17,012 KB
testcase_40 AC 99 ms
17,136 KB
testcase_41 AC 97 ms
17,124 KB
testcase_42 AC 107 ms
17,520 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 97 ms
17,044 KB
testcase_46 AC 98 ms
17,044 KB
testcase_47 AC 94 ms
17,048 KB
testcase_48 AC 98 ms
16,996 KB
testcase_49 AC 97 ms
16,984 KB
testcase_50 AC 99 ms
16,984 KB
testcase_51 AC 95 ms
17,108 KB
testcase_52 AC 97 ms
17,108 KB
testcase_53 WA -
testcase_54 AC 28 ms
10,752 KB
testcase_55 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd, lcm

N, K = map(int, input().split())
A = list(map(int, input().split()))

if K == 1:
    print(0)
    exit()

lcm_all = lcm(*((i * j) for i in range(1, 11) for j in range(1, 11)))

dp = [0] * N
for i in range(N - 1):
    dp[i + 1] = dp[i] + lcm_all // (A[i] * A[i + 1])
denominator = dp[-1]
numerator = dp[K - 1]
g = gcd(numerator, denominator)
denominator //= g
numerator //= g
print(f"{numerator}/{denominator}")
0