結果

問題 No.73 helloworld
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-28 02:38:16
言語 Python2
(2.7.18)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 523 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-28 22:25:50
合計ジャッジ時間 1,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,400 KB
testcase_01 AC 13 ms
6,272 KB
testcase_02 AC 13 ms
6,528 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 13 ms
6,400 KB
testcase_05 AC 13 ms
6,400 KB
testcase_06 AC 13 ms
6,400 KB
testcase_07 AC 13 ms
6,400 KB
testcase_08 AC 14 ms
6,400 KB
testcase_09 AC 13 ms
6,400 KB
testcase_10 AC 13 ms
6,528 KB
testcase_11 AC 20 ms
6,528 KB
testcase_12 AC 16 ms
6,400 KB
testcase_13 AC 13 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def n(a):
    return ord(a)-ord('a')

def trip(n):
    if n <= 2:
        return 0
    ret = 0
    for i in range(2,n):
        ret = max(ret, (n-i)*i*(i-1)/2)
    return ret

ans=1
comb = [[0 for i in range(101)] for j in range (101)]
for i in range(101):
    comb[i][0]=1
    for j in range(1,i+1):
        comb[i][j] = comb[i-1][j-1]+comb[i-1][j]

cnt = [int(raw_input()) for i in range(26)]
print cnt[n('h')]*cnt[n('e')]*(cnt[n('o')]/2)*cnt[n('w')]*(cnt[n('o')]-cnt[n('o')]/2)*cnt[n('r')]*cnt[n('d')]*trip(cnt[n('l')])
0