結果
問題 | No.73 helloworld |
ユーザー | MitI_7 |
提出日時 | 2015-12-14 22:27:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 493 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-29 12:18:21 |
合計ジャッジ時間 | 997 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 27 ms
10,624 KB |
testcase_03 | AC | 27 ms
10,752 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,880 KB |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | AC | 25 ms
10,752 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,880 KB |
testcase_10 | AC | 27 ms
10,880 KB |
testcase_11 | AC | 26 ms
10,880 KB |
testcase_12 | AC | 25 ms
10,880 KB |
testcase_13 | AC | 25 ms
10,880 KB |
ソースコード
from math import factorial def comb(n, k): return factorial(n) // (factorial(k) * factorial(n - k)) def main(): alp = dict() for i in range(26): alp[chr(i + 97)] = int(input()) ans = 1 for c in "hewrd": ans *= alp[c] o = alp['o'] ans *= o // 2 * (o - o // 2) l = alp['l'] - 1 n = 0 for i in range(l - 1): n = max(n, comb(l - i, 2) * (i + 1)) ans *= n print(max(0, ans)) if __name__ == '__main__': main()