結果

問題 No.73 helloworld
ユーザー tanimani364tanimani364
提出日時 2021-03-22 17:16:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-05-03 06:25:16
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,688 KB
testcase_02 AC 38 ms
52,476 KB
testcase_03 AC 38 ms
52,004 KB
testcase_04 AC 38 ms
52,468 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,128 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
52,376 KB
testcase_13 AC 39 ms
52,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt



def main():
	read=stdin.readline

	#edit here!
	num=[int(read()) for i in range(26)]
	ans=1
	ans*=num[3]
	ans*=num[4]
	ans*=num[7]
	maxv=0
	for i in range(num[11]):
		maxv=max(maxv,i*(i-1)//2*(num[11]-i))
	ans*=maxv
	ans*=(num[14]-num[14]//2)*(num[14]//2)
	ans*=num[22]
	print(ans)

if __name__ == '__main__':
	main()
0