杭电-Online Judge -Java代码

本文介绍了一个在线判题系统的实现,该系统能够比较标准输出文件和用户提交的文件,判断两者是否完全相同,或者仅存在空格、制表符或换行符的差异,从而返回“Accepted”、“PresentationError”或“WrongAnswer”。文章通过具体示例展示了如何使用Java实现这一功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user’s result file, then the system compare the two files. If the two files are absolutly same, then the Judge System return “Accepted”, else if the only differences between the two files are spaces(’ ‘), tabs(’\t’), or enters(’\n’), the Judge System should return “Presentation Error”, else the system will return “Wrong Answer”.

Given the data of correct output file and the data of user’s result file, your task is to determine which result the Judge System will return.

Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case has two parts, the data of correct output file and the data of the user’s result file. Both of them are starts with a single line contains a string “START” and end with a single line contains a string “END”, these two strings are not the data. In other words, the data is between the two strings. The data will at most 5000 characters.

Output
For each test cases, you should output the the result Judge System should return.

Sample Input

4
START
1 + 2 = 3
END
START
1+2=3
END
START
1 + 2 = 3
END
START
1 + 2 = 3

END
START
1 + 2 = 3
END
START
1 + 2 = 4
END
START
1 + 2 = 3
END
START
1 + 2 = 3
END

Sample Output

Presentation Error
Presentation Error
Wrong Answer
Presentation Error

import java.util.Scanner;
public class Main{
   public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int t = sc.nextInt();
    String w = sc.nextLine();//接收回车符,不做处理
    while (t != 0) {
        String s1 = "";
        String s2 = "";
        while (true) {
            String s = sc.nextLine();
            if (!s.equals("END")) {
                s1 += s;
                s1 += '\n';//增加换行
            } else {
                break;
            }
        }
        while (true) {
            String s = sc.nextLine();
            if (!s.equals("END")) {
                s2 += s;
                s2 += '\n';
            } else {
                break;
            }
        }
        judge(s1, s2);
        t--;
    }

}

public static void judge(String s1, String s2) {
    if (s1.equals(s2)) {
        System.out.println("Accepted");
    } else {
        String s1s = "";
        String s2s = "";
        for (int i = 0; i < s1.length(); i++) {
            if (s1.charAt(i) != ' ' && s1.charAt(i) != '\n'
                    && s1.charAt(i) != '\t') {
                s1s += s1.charAt(i);
            }
        }
        for (int i = 0; i < s2.length(); i++) {
            if (s2.charAt(i) != ' ' && s2.charAt(i) != '\n'
                    && s2.charAt(i) != '\t') {
                s2s += s2.charAt(i);
            }
        }
        if (s1s.equals(s2s)) {
            System.out.println("Presentation Error");
        } else {
            System.out.println("Wrong Answer");
            }
        }
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值