結果

問題 No.73 helloworld
ユーザー convexineqconvexineq
提出日時 2020-12-06 22:07:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-09-17 13:18:18
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

*a, = map(int,open(0).read().split())
ans = a[7]*a[4]*a[22]*a[17]*a[3]
L,O = a[11],a[14]
r = 0
for i in range(L):
    r = max(r,i*(L-i)*(L-i-1)//2)
ans *= r
r = 0
for i in range(O):
    r = max(r,i*(O-i))
print(ans*r)
0