結果

問題 No.304 鍵(1)
ユーザー 西尾西尾
提出日時 2018-03-14 15:42:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 167,236 KB
実行使用メモリ 25,476 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 01:38:23
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,220 KB
testcase_01 AC 34 ms
25,220 KB
testcase_02 AC 69 ms
25,476 KB
testcase_03 AC 36 ms
24,808 KB
testcase_04 AC 50 ms
24,836 KB
testcase_05 AC 33 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
int i;
char S[ 20 ];

	for( i = 0; i < 1000; i++ )
	{
		printf( "%03d\n", i );
		cin >> S;
		if( S[ 0 ] == 'u' ) return 0;
	}

	return 0;
}
0