結果

問題 No.331 CodeRunnerでやれ
ユーザー uwiuwi
提出日時 2015-12-16 04:53:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 4,897 ms / 5,000 ms
コード長 981 bytes
コンパイル時間 3,755 ms
コンパイル使用メモリ 78,584 KB
実行使用メモリ 87,680 KB
平均クエリ数 1207.59
最終ジャッジ日時 2024-07-16 22:03:13
合計ジャッジ時間 18,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
70,180 KB
testcase_01 AC 295 ms
69,312 KB
testcase_02 AC 1,085 ms
79,268 KB
testcase_03 AC 642 ms
72,292 KB
testcase_04 AC 673 ms
72,344 KB
testcase_05 AC 602 ms
71,552 KB
testcase_06 AC 958 ms
75,364 KB
testcase_07 AC 1,246 ms
76,568 KB
testcase_08 AC 825 ms
57,744 KB
testcase_09 AC 3,837 ms
84,896 KB
testcase_10 AC 1,737 ms
80,336 KB
testcase_11 AC 3,739 ms
85,068 KB
testcase_12 AC 1,835 ms
83,660 KB
testcase_13 AC 4,581 ms
85,904 KB
testcase_14 AC 4,897 ms
87,680 KB
testcase_15 AC 1,707 ms
81,004 KB
testcase_16 AC 1,808 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package writer;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;

public class RandomCrawler {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		Random gen = new Random();
		while(true){
			char command = "FBLR".charAt(gen.nextInt(4));
			out.println(command);
			out.flush();
			String input = in.next();
			if(input.charAt(0) >= '0' && input.charAt(0) <= '9'){
			}else{
				break;
			}
		}
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0