結果

問題 No.73 helloworld
ユーザー nbisconbisco
提出日時 2017-01-11 00:36:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 810 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-29 22:23:34
合計ジャッジ時間 1,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 25 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import functools

def comb(n, r):
    denom = functools.reduce(lambda x,y: x*y, [i for i in range(n-r+1,n+1)])
    numer = functools.reduce(lambda x,y: x*y, [i for i in range(1,r+1)])
    return denom // numer

alpha = [int(input()) for i in range(ord("z")-ord("a")+1)]

h = alpha[ord("h")-ord("a")]
e = alpha[ord("e")-ord("a")]
l = alpha[ord("l")-ord("a")]
o = alpha[ord("o")-ord("a")]
w = alpha[ord("w")-ord("a")]
r = alpha[ord("r")-ord("a")]
d = alpha[ord("d")-ord("a")]

total = h*e*w*r*d

if o > 2:
    total *= ((o-2)//2+1) * (o-2-((o-2)//2)+1)
elif o == 2:
    pass
else:
    total *= 0

if l > 3:
    max_l = 3
    for i in range((l-3)+1):
        tmp = comb(2+i, 2) * (l-3-i+1)
        if tmp > max_l:
            max_l = tmp
    total *= max_l
elif l == 3:
    pass
else:
    total *= 0

print(total)
0