結果

問題 No.73 helloworld
ユーザー tnodinotnodino
提出日時 2022-03-06 01:50:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 09:34:56
合計ジャッジ時間 1,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

C = [int(input()) for _ in range(26)]
d = C[3]
e = C[4]
h = C[7]
l = C[11]
o = C[14]
r = C[17]
w = C[22]
ans = d * e * h * r * w
M = 1
for x in range(1,l):
    M = max(M, (x * (x - 1) // 2) * (l - x))
ans *= M
M = 1
for x in range(1,o):
    M = max(M, x * (o - x))
ans *= M
print(ans)
0