結果
| 問題 |
No.193 筒の数式
|
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2024-12-01 08:42:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 291 ms |
| コンパイル使用メモリ | 82,096 KB |
| 実行使用メモリ | 66,464 KB |
| 最終ジャッジ日時 | 2024-12-01 08:42:19 |
| 合計ジャッジ時間 | 2,175 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 RE * 2 |
ソースコード
s=input() n=len(s) s=s+s a=-10**10 for i in range(n): if (s[i] not in "+-") and (s[i+n-1] not in "+-"): a=max(a,eval(s[i:i+n])) print(a)
sasa8uyauya