結果

問題 No.73 helloworld
ユーザー あかりきあかりき
提出日時 2021-02-08 12:56:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 1,418 ms
コンパイル使用メモリ 86,724 KB
実行使用メモリ 71,328 KB
最終ジャッジ日時 2023-09-18 19:37:17
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,084 KB
testcase_01 AC 74 ms
71,084 KB
testcase_02 AC 73 ms
70,924 KB
testcase_03 AC 73 ms
71,032 KB
testcase_04 AC 76 ms
71,188 KB
testcase_05 AC 74 ms
71,108 KB
testcase_06 AC 74 ms
70,928 KB
testcase_07 AC 74 ms
71,092 KB
testcase_08 AC 73 ms
71,316 KB
testcase_09 AC 73 ms
71,032 KB
testcase_10 AC 73 ms
71,164 KB
testcase_11 AC 73 ms
71,128 KB
testcase_12 AC 74 ms
71,328 KB
testcase_13 AC 72 ms
71,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c=[int(input()) for i in range(26)]
d=max(c[3],0)
e=max(c[4],0)
h=max(c[7],0)
l=0
if c[11]>=3:
  for i in range(2,c[11]):
    l=max(l,i*(i-1)//2*(c[11]-i))
o=0
if c[14]>=2:
  for i in range(1,c[14]):
    o=max(o,i*(c[14]-i))
r=max(c[17],0)
w=max(c[22],0)
print(d*e*h*l*o*r*w)
0