結果

問題 No.305 鍵(2)
ユーザー Mcpu3Mcpu3
提出日時 2018-09-17 23:47:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 72,100 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 01:53:38
合計ジャッジ時間 5,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
70,516 KB
testcase_01 AC 216 ms
72,100 KB
testcase_02 AC 231 ms
70,616 KB
testcase_03 AC 211 ms
70,852 KB
testcase_04 AC 218 ms
71,252 KB
testcase_05 AC 228 ms
70,496 KB
testcase_06 AC 137 ms
69,716 KB
testcase_07 AC 223 ms
70,868 KB
testcase_08 AC 234 ms
70,720 KB
testcase_09 AC 223 ms
71,456 KB
testcase_10 AC 229 ms
70,860 KB
testcase_11 AC 229 ms
70,940 KB
testcase_12 AC 223 ms
71,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int a[]=new int[10],m,t1,t2=0,j;
        String s=new String();
        for(int i=0;i<10;++i){
            m=0;
            for(j=0;j<10;++j){
                a[i]=j;
                for(int k=0;k<10;++k)System.out.print(a[k]);
                System.out.println();
                System.out.flush();
                t1=sc.nextInt();
                s=sc.next();
                if(t1>9)break;
                if(t1>m){
                    m=t1;
                    t2=j;
                }
            }
            if(10>j)break;
            a[i]=t2;
        }
        sc.close();
    }
}
0