結果

問題 No.305 鍵(2)
ユーザー yamachu_nazoyamachu_nazo
提出日時 2015-11-28 00:01:04
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 616 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 55,528 KB
実行使用メモリ 25,348 KB
平均クエリ数 55.31
最終ジャッジ日時 2024-07-16 06:44:18
合計ジャッジ時間 1,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    int i=0;
    int x,zerox;
    int ans[10];
    string rep;
    
    cout << "0000000000" << endl;
    cin >> zerox >> rep;
    
    for(int i=0;i<10;i++){
    	for(int j=0;j<10;j++){
    		for(int k=0;k<10;k++){
    			if(k==i){
    				cout << j;
    			}else{
    				cout << '0';
    			}
    		}
    		cout << endl;
    		cin >> x >> rep;
	    	if(x>zerox){
	    		ans[i]=j;
	    		break;
	    	}else if(x<zerox){
	    		ans[i]=0;
	    		break;
	    	}
    	}
    }
    for(int i=0;i<10;i++){
    	cout << ans[i];
    }
    cout << endl;
    return 0;
}
0