結果
| 問題 | 
                            No.304 鍵(1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             mits58
                         | 
                    
| 提出日時 | 2016-07-02 11:43:41 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 380 bytes | 
| コンパイル時間 | 2,283 ms | 
| コンパイル使用メモリ | 79,356 KB | 
| 実行使用メモリ | 72,456 KB | 
| 平均クエリ数 | 1.17 | 
| 最終ジャッジ日時 | 2024-07-16 10:30:16 | 
| 合計ジャッジ時間 | 5,479 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 5 RE * 1 | 
ソースコード
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		for(int i=0;i<10;i++){
			for(int j=0;j<10;j++){
				for(int k=0;k<10;k++){
					System.out.println(Integer.toString(i)+Integer.toString(j)+Integer.toString(k));
					String str=sc.next();
					if(str.equals("locked")) System.exit(0);
				}
			}
		}
	}
}
            
            
            
        
            
mits58