結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 35 ms
52,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
51,712 KB
testcase_13 AC 34 ms
52,224 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