結果

問題 No.5000 特殊ジャッジテスト(テスト用)
ユーザー uafr_csuafr_cs
提出日時 2015-05-24 20:59:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 830 bytes
コンパイル時間 2,975 ms
実行使用メモリ 24,096 KB
スコア 0
最終ジャッジ日時 2018-03-12 00:01:07
ジャッジサーバーID
(参考情報)
judge7 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		try(final Scanner output = new Scanner(System.in);
			final Scanner input  = new Scanner(new File(args[0]));
			final Scanner answer = new Scanner(new File(args[1]));
			final Scanner source = new Scanner(new File(args[2]))){
			
			final int N = input.nextInt();
			
			final int output_A = output.nextInt();
			final int output_B = output.nextInt();
			
			while(source.hasNextLine()){
				if(source.nextLine().contains("random")){
					throw new RuntimeException();
				}
			}
			
			if(output_A == 1){
				throw new RuntimeException();
			}
			
		} catch (FileNotFoundException e) {
			new RuntimeException(e);
		}
	}
	
}
0