結果

問題 No.193 筒の数式
ユーザー taba
提出日時 2016-04-16 21:49:17
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-10-04 10:20:27
合計ジャッジ時間 848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

s=raw_input()
m=-19**19
for i in range(len(s)):
	t=list(s[i:]+s[:i])
	for j in range(len(t)-3,-1,-1):
		if t[j].isdigit()==False and t[j+1]=="0" and t[j+2].isdigit():
			t.pop(j+1)
	while t[1].isdigit() and t[0]=="0":
		t.pop(0)
	t="".join(t)
	print t,s[i:]+s[:i],s[:i],s[i:]
	if t[0].isdigit() and t[-1].isdigit():
		m=max(m,eval(t))
print m
0