結果
| 問題 | No.304 鍵(1) |
| コンテスト | |
| ユーザー |
mits58
|
| 提出日時 | 2016-07-02 11:44:11 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 171 ms / 2,000 ms |
| コード長 | 382 bytes |
| 記録 | |
| コンパイル時間 | 1,585 ms |
| コンパイル使用メモリ | 85,176 KB |
| 実行使用メモリ | 64,236 KB |
| 平均クエリ数 | 309.17 |
| 最終ジャッジ日時 | 2026-03-31 14:26:26 |
| 合計ジャッジ時間 | 3,090 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 |
ソースコード
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("unlocked")) System.exit(0);
}
}
}
}
}
mits58