結果

問題 No.331 CodeRunnerでやれ
ユーザー uwiuwi
提出日時 2015-12-16 05:02:32
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 982 bytes
コンパイル時間 3,836 ms
コンパイル使用メモリ 78,652 KB
実行使用メモリ 87,344 KB
平均クエリ数 9751.24
最終ジャッジ日時 2024-07-16 22:02:32
合計ジャッジ時間 44,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
57,636 KB
testcase_01 AC 306 ms
57,216 KB
testcase_02 AC 767 ms
60,280 KB
testcase_03 AC 923 ms
61,648 KB
testcase_04 AC 704 ms
59,716 KB
testcase_05 AC 801 ms
60,428 KB
testcase_06 AC 986 ms
62,080 KB
testcase_07 TLE -
testcase_08 AC 1,414 ms
68,352 KB
testcase_09 TLE -
testcase_10 AC 973 ms
61,640 KB
testcase_11 AC 2,456 ms
73,448 KB
testcase_12 TLE -
testcase_13 AC 2,707 ms
74,012 KB
testcase_14 AC 3,971 ms
74,564 KB
testcase_15 AC 1,801 ms
72,024 KB
testcase_16 AC 4,171 ms
74,300 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(0);
		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