結果
| 問題 | 
                            No.5000 特殊ジャッジテスト(テスト用)
                             | 
                    
| ユーザー | 
                             uafr_cs
                         | 
                    
| 提出日時 | 2015-05-24 20:59:01 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 830 bytes | 
| コンパイル時間 | 2,975 ms | 
| 実行使用メモリ | 24,096 KB | 
| スコア | 0 | 
| 最終ジャッジ日時 | 2018-03-12 00:01:07 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge7 / | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 4 | 
ソースコード
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);
		}
	}
	
}
            
            
            
        
            
uafr_cs