結果

問題 No.304 鍵(1)
ユーザー Mcpu3Mcpu3
提出日時 2018-06-24 00:07:11
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 26,620 KB
実行使用メモリ 24,060 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 01:48:39
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,364 KB
testcase_01 AC 25 ms
23,964 KB
testcase_02 AC 56 ms
23,352 KB
testcase_03 AC 25 ms
23,388 KB
testcase_04 AC 38 ms
24,060 KB
testcase_05 AC 23 ms
23,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	char s[9];
	int i;
	for (i = 0; s[0] != 'u'; i++) {
		printf("%03d\n", i);
		fflush(0);
		scanf("%s", s);
	}
	return 0;
}
0