結果

問題 No.73 helloworld
ユーザー 👑 rin204rin204
提出日時 2022-01-20 20:47:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-05-03 07:16:24
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

C = [int(input()) for _ in range(26)]

h = C[ord("h") - 97]
e = C[ord("e") - 97]
l = C[ord("l") - 97]
o = C[ord("o") - 97]
w = C[ord("w") - 97]
r = C[ord("r") - 97]
d = C[ord("d") - 97]

ans = h * e * w * r * d
ans *= (o // 2) * ((o + 1) // 2)
max_ = 0
for i in range(2, l):
    tmp = i * (i - 1) // 2 * (l - i)
    max_ = tmp
print(ans * max_)
0