結果

問題 No.193 筒の数式
ユーザー flippergoflippergo
提出日時 2025-01-01 14:47:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 210 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 66,468 KB
最終ジャッジ日時 2025-01-01 14:47:30
合計ジャッジ時間 2,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 35 ms
52,420 KB
testcase_03 AC 35 ms
52,388 KB
testcase_04 AC 36 ms
52,548 KB
testcase_05 AC 35 ms
53,132 KB
testcase_06 AC 37 ms
52,004 KB
testcase_07 AC 35 ms
52,688 KB
testcase_08 AC 36 ms
53,664 KB
testcase_09 AC 36 ms
52,832 KB
testcase_10 AC 35 ms
53,224 KB
testcase_11 AC 39 ms
52,120 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 39 ms
53,008 KB
testcase_14 AC 35 ms
53,096 KB
testcase_15 AC 36 ms
52,820 KB
testcase_16 AC 35 ms
51,904 KB
testcase_17 AC 36 ms
52,688 KB
testcase_18 AC 36 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()
NUM = [str(i) for i in range(10)]
ans = -10**10
for i in range(len(S)):
    x = S[i:]+S[:i]
    if x[0] not in NUM or x[-1] not in NUM:
        continue
    ans = max(ans,eval(x))
print(ans)
0