結果
問題 |
No.73 helloworld
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 7 |
ソースコード
#!/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()