結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 35 ms
52,664 KB
testcase_03 AC 36 ms
52,084 KB
testcase_04 AC 36 ms
52,200 KB
testcase_05 AC 35 ms
52,316 KB
testcase_06 AC 35 ms
52,464 KB
testcase_07 AC 36 ms
52,864 KB
testcase_08 AC 36 ms
52,232 KB
testcase_09 AC 36 ms
52,588 KB
testcase_10 AC 34 ms
52,616 KB
testcase_11 AC 34 ms
53,220 KB
testcase_12 AC 36 ms
52,404 KB
testcase_13 AC 36 ms
52,080 KB
testcase_14 AC 35 ms
53,232 KB
testcase_15 AC 35 ms
52,248 KB
testcase_16 AC 38 ms
52,820 KB
testcase_17 AC 35 ms
53,432 KB
testcase_18 AC 39 ms
52,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
NUM = [str(i) for i in range(10)]
ans = -10**10
for i in range(len(S)):
    x = "".join(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