結果

問題 No.73 helloworld
ユーザー mkawa2mkawa2
提出日時 2020-01-03 09:48:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-02 07:05:02
合計ジャッジ時間 993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 24 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    a = [int(input()) for _ in range(26)]
    a11 = a[11]
    if a11 > 2:
        pl = max(n * (n - 1) * (a11 - n) // 2 for n in range(1, a11))
    else:
        pl = 0
    a14 = a[14]
    po = (a14 // 2) * (a14 - a14 // 2)
    ans = a[3] * a[4] * a[7] * a[17] * a[22] * pl * po
    print(ans)

main()
0