Number
Description
给两个数
起始数st和终止数ed
想办法通过最小的操作由起始数变为终止数
1.交换相邻位上的两个数字
2.使某个位上的数字+1,不能够超过9
3.使某个位上的数字-1,不能够小于1
st<1000000
ed<1000000
Input
两个正整数
st和ed
并且每个数字中没有0
Output
一个正整数,表示最小操作的步数
Sample 1
Input
993826
278294
Output
9
Sample 2
Input
121
211
Output
1
Limitation
1s, 128MB for each test case.
Hint
Free Pascal Code
var a,b:longint;
begin
readln(a,b);
writeln(a+b);
end.
C Code
#include <stdio.h>
int main(void)
{
int a, b;
scanf("%d%d", &a, &b);
printf("%d\n", a + b);
return 0;
}
C++ Code
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
Python Code
a, b = [int(i) for i in raw_input().split()]
print(a + b)
Java Code
import java.io.*;
import java.util.Scanner;
public class Main {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
Source
Vijos Original