結果
| 問題 | No.73 helloworld |
| コンテスト | |
| ユーザー |
tnodino
|
| 提出日時 | 2022-03-06 01:51:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 5,000 ms |
| コード長 | 324 bytes |
| 記録 | |
| コンパイル時間 | 332 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 36,056 KB |
| 最終ジャッジ日時 | 2026-04-02 22:51:28 |
| 合計ジャッジ時間 | 2,240 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
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))
if l < 3:
M = 0
ans *= M
M = 1
for x in range(1,o):
M = max(M, x * (o - x))
if o < 2:
M = 0
ans *= M
print(ans)
tnodino