Skip to content

1037 在霍格沃茨找零钱

如果你是哈利·波特迷,你会知道魔法世界有它自己的货币系统 —— 就如海格告诉哈利的:“十七个银西可(Sickle)兑一个加隆(Galleon),二十九个纳特(Knut)兑一个西可,很容易。”现在,给定哈利应付的价钱 P 和他实付的钱 A,你的任务是写一个程序来计算他应该被找的零钱。

输入格式:

输入在 1 行中分别给出 PA,格式为 Galleon.Sickle.Knut,其间用 1 个空格分隔。这里 Galleon 是 [0, 107] 区间内的整数,Sickle 是 [0, 17) 区间内的整数,Knut 是 [0, 29) 区间内的整数。

输出格式:

在一行中用与输入同样的格式输出哈利应该被找的零钱。如果他没带够钱,那么输出的应该是负数。

输入样例 1:

tex
10.16.27 14.1.28
10.16.27 14.1.28

输出样例 1:

tex
3.2.1
3.2.1

输入样例 2:

tex
14.1.28 10.16.27
14.1.28 10.16.27

输出样例 2:

tex
-3.2.1
-3.2.1

Solution:

java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String[] input = in.readLine().split(" ");
        String[] P = input[0].split("\\.");
        String[] A = input[1].split("\\.");
        int p = Integer.parseInt(P[0]) * 17 * 29 + Integer.parseInt(P[1]) * 29 + Integer.parseInt(P[2]);
        int a = Integer.parseInt(A[0]) * 17 * 29 + Integer.parseInt(A[1]) * 29 + Integer.parseInt(A[2]);
        int result = a - p;
        if (result < 0) {
            result = -result;
            System.out.print("-");
        }
        int galleon = 0, sickle = 0, knut = 0;
        galleon = result / (17 * 29);
        sickle = result % (17 * 29) / 29;
        knut = result % (17 * 29) % 29;
        System.out.printf("%d.%d.%d", galleon, sickle, knut);
    }
}
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String[] input = in.readLine().split(" ");
        String[] P = input[0].split("\\.");
        String[] A = input[1].split("\\.");
        int p = Integer.parseInt(P[0]) * 17 * 29 + Integer.parseInt(P[1]) * 29 + Integer.parseInt(P[2]);
        int a = Integer.parseInt(A[0]) * 17 * 29 + Integer.parseInt(A[1]) * 29 + Integer.parseInt(A[2]);
        int result = a - p;
        if (result < 0) {
            result = -result;
            System.out.print("-");
        }
        int galleon = 0, sickle = 0, knut = 0;
        galleon = result / (17 * 29);
        sickle = result % (17 * 29) / 29;
        knut = result % (17 * 29) % 29;
        System.out.printf("%d.%d.%d", galleon, sickle, knut);
    }
}

Released under the MIT License.