結果

問題 No.331 CodeRunnerでやれ
ユーザー cielciel
提出日時 2015-12-24 00:32:21
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 20,608 KB
実行使用メモリ 25,476 KB
平均クエリ数 390.53
最終ジャッジ日時 2024-07-16 22:20:49
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
25,232 KB
testcase_01 AC 192 ms
24,464 KB
testcase_02 AC 169 ms
25,232 KB
testcase_03 AC 207 ms
25,232 KB
testcase_04 AC 168 ms
25,220 KB
testcase_05 AC 167 ms
24,836 KB
testcase_06 AC 232 ms
25,232 KB
testcase_07 AC 193 ms
24,580 KB
testcase_08 AC 241 ms
24,592 KB
testcase_09 AC 245 ms
25,220 KB
testcase_10 AC 249 ms
24,580 KB
testcase_11 AC 214 ms
24,976 KB
testcase_12 AC 200 ms
25,476 KB
testcase_13 AC 275 ms
25,220 KB
testcase_14 AC 237 ms
24,976 KB
testcase_15 AC 254 ms
24,964 KB
testcase_16 AC 317 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(){
	int N,x;scanf("%d",&N);
	for(;;){
		puts("L");
		fflush(stdout);
		scanf("%d",&N);
		for(x=99;--x;){
			puts("R");
			fflush(stdout);
			scanf("%d",&N);
			for(;!N;){
				puts("L");
				fflush(stdout);
				scanf("%d",&N);
			}
			if(N>50){
				for(x=50;--x;)puts("F");
				return 0;
			}
			puts("F");
			fflush(stdout);
			scanf("%d",&N);
		}
		for(;N--;){
			puts("F");
			fflush(stdout);
			scanf("%d",&x);
		}
	}
}
0