結果

問題 No.305 鍵(2)
ユーザー Mcpu3Mcpu3
提出日時 2018-09-17 23:40:38
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 25,604 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 01:53:31
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,836 KB
testcase_01 AC 21 ms
24,580 KB
testcase_02 AC 21 ms
25,220 KB
testcase_03 AC 21 ms
25,220 KB
testcase_04 AC 21 ms
24,836 KB
testcase_05 AC 22 ms
24,964 KB
testcase_06 AC 20 ms
25,220 KB
testcase_07 AC 22 ms
25,220 KB
testcase_08 AC 21 ms
25,220 KB
testcase_09 AC 21 ms
25,604 KB
testcase_10 AC 23 ms
25,220 KB
testcase_11 AC 22 ms
24,580 KB
testcase_12 AC 24 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int a[10]={0},m,t1,t2,i,j,k;
    for(i=0;i<10;++i){
        m=0;
        for(j=0;j<10;++j){
            a[i]=j;
            for(k=0;k<10;++k)printf("%d",a[k]);
            puts("");
            fflush(0);
            scanf("%d%*s",&t1);
            if(t1>9)break;
            if(t1>m){
                m=t1;
                t2=j;
            }
        }
        if(10>j)break;
        a[i]=t2;
    }
    return 0;
}
0