魏老四OJ
Home
ProblemSet
Source/Category
Contest
题单
Status
Ranklist
F.A.Qs
Login
1128: 【基础】整数串拆段
Memory Limit:64 MB
Time Limit:1.000 S
:
Creator:
Submit:1
Solved:1
Submit
Statistics
Description
将一个长度小于10位的数字串拆成2段,使其和为最小的素数。
例如数字串‘13304’
拆的方法有:
1 + 3304 = 3305
13 + 304 = 317
133 + 04 = 137
1330 + 4 = 1334
从上面可看出,和为素数的有:317 与137,最小的是137
Input
一个长度小于10的数字串
Output
最小的和为素数的数,若无素数则输出 -1
Sample Input
13304
Sample Output
137
Source/Category
字符串
Submit
Statistics