Hackerrank 不接受有效的解决方案

Hackerrank not accepting valid solution

(HakerRank) task 是让我格式化测试用例给出的输入。

字符串和整数之间需要有 15 个空格,如果只有两位数字,则在整数前面附加一个零,据我所知,我的代码实现了这一点,并且匹配预期的输出,但是我的代码仍然被认为是不正确的。

我可以得到一些帮助来找出原因吗?

我的代码:

import java.util.Scanner;

public class Solution {

    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        System.out.println("================================");
        for(int i=0;i<3;i++) {
            String s1=sc.next();
            int x=sc.nextInt();
            int length = String.valueOf(x).length();
            if(length < 3) {
                System.out.format("%-15s %03d %n", s1, x );
            } else {
                System.out.format("%-15s %d %n", s1, x );
            }
        }
        System.out.println("================================");
    }
}

只需删除字符串格式中的空格,如下所示:

// ...
if(length < 3) {
    System.out.format("%-15s%03d%n", s1, x);
} else {
    System.out.format("%-15s%d%n", s1, x);
}
// ...

并且它通过了所有测试:)