結果

問題 No.193 筒の数式
ユーザー sasa8uyauyasasa8uyauya
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 38 ms
53,112 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 34 ms
52,560 KB
testcase_05 AC 34 ms
52,604 KB
testcase_06 AC 36 ms
52,276 KB
testcase_07 AC 37 ms
52,552 KB
testcase_08 AC 37 ms
52,740 KB
testcase_09 AC 36 ms
52,516 KB
testcase_10 AC 35 ms
52,000 KB
testcase_11 AC 36 ms
52,620 KB
testcase_12 AC 35 ms
53,492 KB
testcase_13 AC 37 ms
52,948 KB
testcase_14 AC 39 ms
52,748 KB
testcase_15 AC 38 ms
53,376 KB
testcase_16 AC 35 ms
51,812 KB
testcase_17 AC 34 ms
52,704 KB
testcase_18 AC 35 ms
52,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0