結果

問題 No.73 helloworld
ユーザー nbisconbisco
提出日時 2017-01-11 00:35:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-10 04:03:30
合計ジャッジ時間 2,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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)])
    print("%d,%d -> %d"%(n, r, denom//numer))
    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