結果
問題 | No.193 筒の数式 |
ユーザー |
![]() |
提出日時 | 2020-05-03 18:10:12 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 295 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-13 02:54:47 |
合計ジャッジ時間 | 1,563 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 WA * 2 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() S=input() ans=-float("inf") n=len(S) S=S+S for i in range(n): if S[i]=="+" or S[i]=="-": continue elif S[i+n-1]=="+" or S[i+n-1]=="-": continue else: try: ans=max(ans,eval(S[i:i+n])) except: pass print(ans)