結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-11 02:53:55 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 351 ms / 2,000 ms |
| コード長 | 412 bytes |
| コンパイル時間 | 2,753 ms |
| コンパイル使用メモリ | 76,652 KB |
| 実行使用メモリ | 72,808 KB |
| 平均クエリ数 | 309.17 |
| 最終ジャッジ日時 | 2024-07-16 23:05:11 |
| 合計ジャッジ時間 | 4,794 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 |
ソースコード
import java.util.Date;
import java.util.Scanner;
public class Main{
public static void main(String[] args){
long exec_time=new Date().getTime();
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(""+i+j+k);
System.out.flush();
String str=sc.next();
if(str.charAt(0)=='u')
return;
}
}
}
}
}