結果

問題 No.304 鍵(1)
ユーザー nninjinn00nninjinn00
提出日時 2017-02-20 20:58:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 51,884 KB
実行使用メモリ 24,420 KB
平均クエリ数 1000.00
最終ジャッジ日時 2023-09-23 12:45:53
合計ジャッジ時間 2,261 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
	string str;
	for(int i=0;i<1000;i++){
		if(str=="unlocked")
			break;
		else{
			if(i<10)
				cout << 00 << i << endl;
			else if(i<100)
				cout << 0 << i << endl;
			else
				cout << i << endl;
		}
		cin >> str;
	}
}
0